From 77e0463cc6886e316e9fb65dae9ada08f8c6a05b Mon Sep 17 00:00:00 2001 From: bob <605277374@qq.com> Date: Tue, 3 Jun 2025 18:09:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8C=89=E9=92=AE=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/UI/Home/Pages/HomeMainPage.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Assets/Scripts/UI/Home/Pages/HomeMainPage.cs b/Assets/Scripts/UI/Home/Pages/HomeMainPage.cs index 0acbaebc6..8f17e3cd3 100644 --- a/Assets/Scripts/UI/Home/Pages/HomeMainPage.cs +++ b/Assets/Scripts/UI/Home/Pages/HomeMainPage.cs @@ -1,13 +1,18 @@ // 本脚本只在不存在时会生成一次。组件逻辑写在当前脚本内。已存在不会再次生成覆盖 +using System.Collections.Generic; +using FairyGUI; using NBC; namespace NBF { public partial class HomeMainPage : HomePageBase { + private List _buttons = new List(); + private void OnInited() { + _buttons.Add(OpGroup.BtnGo); } protected override void OnShow()