summaryrefslogtreecommitdiff
path: root/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_DropdownEditor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_DropdownEditor.cs')
-rw-r--r--Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_DropdownEditor.cs51
1 files changed, 51 insertions, 0 deletions
diff --git a/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_DropdownEditor.cs b/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_DropdownEditor.cs
new file mode 100644
index 0000000..60406aa
--- /dev/null
+++ b/Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_DropdownEditor.cs
@@ -0,0 +1,51 @@
+using UnityEngine;
+using UnityEditor;
+using UnityEditor.UI;
+using UnityEngine.UI;
+
+namespace TMPro.EditorUtilities
+{
+ [CustomEditor(typeof(TMP_Dropdown), true)]
+ [CanEditMultipleObjects]
+ public class DropdownEditor : SelectableEditor
+ {
+ SerializedProperty m_Template;
+ SerializedProperty m_CaptionText;
+ SerializedProperty m_CaptionImage;
+ SerializedProperty m_ItemText;
+ SerializedProperty m_ItemImage;
+ SerializedProperty m_OnSelectionChanged;
+ SerializedProperty m_Value;
+ SerializedProperty m_Options;
+
+ protected override void OnEnable()
+ {
+ base.OnEnable();
+ m_Template = serializedObject.FindProperty("m_Template");
+ m_CaptionText = serializedObject.FindProperty("m_CaptionText");
+ m_CaptionImage = serializedObject.FindProperty("m_CaptionImage");
+ m_ItemText = serializedObject.FindProperty("m_ItemText");
+ m_ItemImage = serializedObject.FindProperty("m_ItemImage");
+ m_OnSelectionChanged = serializedObject.FindProperty("m_OnValueChanged");
+ m_Value = serializedObject.FindProperty("m_Value");
+ m_Options = serializedObject.FindProperty("m_Options");
+ }
+
+ public override void OnInspectorGUI()
+ {
+ base.OnInspectorGUI();
+ EditorGUILayout.Space();
+
+ serializedObject.Update();
+ EditorGUILayout.PropertyField(m_Template);
+ EditorGUILayout.PropertyField(m_CaptionText);
+ EditorGUILayout.PropertyField(m_CaptionImage);
+ EditorGUILayout.PropertyField(m_ItemText);
+ EditorGUILayout.PropertyField(m_ItemImage);
+ EditorGUILayout.PropertyField(m_Value);
+ EditorGUILayout.PropertyField(m_Options);
+ EditorGUILayout.PropertyField(m_OnSelectionChanged);
+ serializedObject.ApplyModifiedProperties();
+ }
+ }
+} \ No newline at end of file