From da85077c3350e9da940c5f603c889f02d38acc28 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期四, 11 十二月 2025 00:04:31 +0800
Subject: [PATCH] 0312 一级界面的按钮
---
Assets/Editor/UIComponent/GroupButtonExEditor.cs | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Assets/Editor/UIComponent/GroupButtonExEditor.cs b/Assets/Editor/UIComponent/GroupButtonExEditor.cs
index 273d0bd..49929e1 100644
--- a/Assets/Editor/UIComponent/GroupButtonExEditor.cs
+++ b/Assets/Editor/UIComponent/GroupButtonExEditor.cs
@@ -8,6 +8,7 @@
SerializedProperty selectIconProperty;
SerializedProperty unselectIconProperty;
SerializedProperty titleProperty;
+ SerializedProperty titleOutlineProperty;
SerializedProperty effectProperty;
SerializedProperty redpointProperty;
@@ -18,6 +19,7 @@
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");
}
@@ -35,6 +37,7 @@
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"));
--
Gitblit v1.8.0