您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
30 行
1.0 KiB
30 行
1.0 KiB
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using UnityEditor;
|
|
|
|
namespace GameplayIngredients.Editor
|
|
{
|
|
[CustomPropertyDrawer(typeof(Actions.ToggleUIAction.UIToggle))]
|
|
public class UITogglePropertyDrawer : PropertyDrawer
|
|
{
|
|
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
|
|
{
|
|
var toggle = property.FindPropertyRelative("State");
|
|
var obj = property.FindPropertyRelative("Selectable");
|
|
|
|
var toggleRect = new Rect(position);
|
|
toggleRect.xMin = toggleRect.xMax - 80;
|
|
|
|
var objRect = new Rect(position);
|
|
objRect.xMax -= 80;
|
|
|
|
toggle.intValue = EditorGUI.IntPopup(toggleRect, toggle.intValue, labels, values);
|
|
obj.objectReferenceValue = EditorGUI.ObjectField(objRect, obj.objectReferenceValue, typeof(Selectable), true);
|
|
}
|
|
|
|
static GUIContent[] labels = { new GUIContent("Disable"), new GUIContent("Enable"), new GUIContent("Toggle") };
|
|
static int[] values = { 0, 1, 2 };
|
|
}
|
|
}
|
|
|
|
|