您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
29 行
1.0 KiB
29 行
1.0 KiB
using UnityEngine;
|
|
using UnityEditor;
|
|
|
|
namespace GameplayIngredients.Editor
|
|
{
|
|
[CustomPropertyDrawer(typeof(Actions.ToggleBehaviourAction.BehaviourToggle))]
|
|
public class BehaviourTogglePropertyDrawer : PropertyDrawer
|
|
{
|
|
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
|
|
{
|
|
var toggle = property.FindPropertyRelative("State");
|
|
var bhv = property.FindPropertyRelative("Behaviour");
|
|
|
|
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);
|
|
bhv.objectReferenceValue = EditorGUI.ObjectField(objRect, bhv.objectReferenceValue, typeof(Behaviour), true);
|
|
}
|
|
|
|
static GUIContent[] labels = { new GUIContent("Disable"), new GUIContent("Enable"), new GUIContent("Toggle") };
|
|
static int[] values = { 0, 1, 2 };
|
|
}
|
|
}
|
|
|
|
|