58 lines
1.8 KiB
C#
58 lines
1.8 KiB
C#
using UnityEditor;
|
|
using UnityEngine;
|
|
using XericUI.OverrideUI;
|
|
|
|
namespace XericUIEditor.OverrideUI
|
|
{
|
|
[CustomEditor(typeof(XericUIrAttributeTextMeshProText))]
|
|
[CanEditMultipleObjects]
|
|
internal class XericUIrAttributeTextMeshProTextEditor : Editor
|
|
{
|
|
#if dUI_TextMeshPro
|
|
SerializedProperty _targetTextProp;
|
|
#endif
|
|
SerializedProperty _entryTagProp;
|
|
SerializedProperty _tagIndexProp;
|
|
|
|
private void OnEnable()
|
|
{
|
|
#if dUI_TextMeshPro
|
|
_targetTextProp = serializedObject.FindProperty("_targetText");
|
|
#endif
|
|
_entryTagProp = serializedObject.FindProperty("_entryTag");
|
|
_tagIndexProp = serializedObject.FindProperty("_tagIndex");
|
|
}
|
|
|
|
public override void OnInspectorGUI()
|
|
{
|
|
serializedObject.Update();
|
|
|
|
var targetComp = target as XericUIrAttributeTextMeshProText;
|
|
|
|
EditorGUILayout.LabelField("XericUIrAttributeTextMeshProText", EditorStyles.boldLabel);
|
|
EditorGUILayout.Space();
|
|
|
|
// 提示信息
|
|
EditorGUILayout.HelpBox(
|
|
"此组件为 TMP_Text 的标记附加器,需挂在与 TMP_Text 同一个 GameObject 上。\n" +
|
|
"_entryTag 和 _tagIndex 用于反射界面生成器自动绑定。",
|
|
MessageType.Info);
|
|
|
|
#if dUI_TextMeshPro
|
|
EditorGUILayout.PropertyField(_targetTextProp);
|
|
#endif
|
|
|
|
EditorGUILayout.Space();
|
|
EditorGUILayout.LabelField("Reflection UI Attribute Tag", EditorStyles.boldLabel);
|
|
|
|
if (_entryTagProp != null)
|
|
EditorGUILayout.PropertyField(_entryTagProp);
|
|
|
|
if (_tagIndexProp != null)
|
|
EditorGUILayout.PropertyField(_tagIndexProp);
|
|
|
|
serializedObject.ApplyModifiedProperties();
|
|
}
|
|
}
|
|
}
|