源战役客户端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

20 行
511 B

using UnityEngine;
using UnityEditor;
namespace U3DExtends
{
[CustomEditor(typeof(Decorate))]
public class DecorateEditor : Editor
{
public override void OnInspectorGUI()
{
Decorate widget = target as Decorate;
if (GUILayout.Button("加载外部图片", GUILayout.Height(30)))
{
UIEditorHelper.SelectPicForDecorate(widget);
}
}
}
//Cat!TODO:给按钮文本等控件增加切换样式的功能
}