| | |
| | | SerializedProperty selectIconProperty;
|
| | | SerializedProperty unselectIconProperty;
|
| | | SerializedProperty titleProperty;
|
| | | SerializedProperty titleOutlineProperty;
|
| | | SerializedProperty effectProperty;
|
| | | SerializedProperty redpointProperty;
|
| | |
|
| | |
| | | selectIconProperty = serializedObject.FindProperty("m_SelectIcon");
|
| | | unselectIconProperty = serializedObject.FindProperty("m_UnSelectIcon");
|
| | | titleProperty = serializedObject.FindProperty("m_Title");
|
| | | titleOutlineProperty = serializedObject.FindProperty("m_TitleOutline");
|
| | | effectProperty = serializedObject.FindProperty("m_SelectEffect");
|
| | | redpointProperty = serializedObject.FindProperty("redpoint");
|
| | | }
|
| | |
| | | EditorGUILayout.PropertyField(selectIconProperty, new GUIContent("Select Icon"));
|
| | | EditorGUILayout.PropertyField(unselectIconProperty, new GUIContent("Unselect Icon"));
|
| | | EditorGUILayout.PropertyField(titleProperty, new GUIContent("Title"));
|
| | | EditorGUILayout.PropertyField(titleOutlineProperty, new GUIContent("Title Outline"));
|
| | | EditorGUILayout.PropertyField(effectProperty, new GUIContent("SelectEffect"));
|
| | | EditorGUILayout.PropertyField(redpointProperty, new GUIContent("Redpoint"));
|
| | |
|