diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-04-19 17:19:32 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-04-19 17:19:32 -0400 |
| commit | c55fba8ab2a1c9d3df65eda4a5a1e957f4aa1f78 (patch) | |
| tree | ee4d51c7c1d633e11f46453ef1edd3c77c4ef9f7 /Library/PackageCache/com.unity.textmeshpro@2.0.1/Scripts/Editor/TMP_DropdownEditor.cs | |
| download | Project-Sandbox-c55fba8ab2a1c9d3df65eda4a5a1e957f4aa1f78.tar.gz Project-Sandbox-c55fba8ab2a1c9d3df65eda4a5a1e957f4aa1f78.tar.bz2 Project-Sandbox-c55fba8ab2a1c9d3df65eda4a5a1e957f4aa1f78.zip | |
Inital commit
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.cs | 51 |
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 |
