Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / ui / myUi / MyUiPanel.cs
@小李xl 小李xl on 31 Mar 2023 301 bytes 更新文档
using Godot;

namespace UI.MyUi;

public partial class MyUiPanel : MyUi
{

    public override void OnShowUi()
    {
        L_Control.L_Label.Instance.Text = "文本";
        L_Button.Instance.Pressed += () =>
        {

        };
    }

    public override void OnHideUi()
    {
        
    }

}