This commit is contained in:
2025-10-17 22:52:16 +08:00
parent 54854c0915
commit f00a65e2f8
4 changed files with 26 additions and 1 deletions

View File

@@ -12,5 +12,5 @@ Game/CharacterScript/Common/Rest.nut
Game/CharacterScript/Common/Move.nut Game/CharacterScript/Common/Move.nut
UI/asd.nut UI/MainUI.nut
main.nut main.nut

22
UI/MainUI.nut Normal file
View File

@@ -0,0 +1,22 @@
/*
文件名:MainUI.nut
路径:UI/MainUI.nut
创建日期:2025-10-11 11:21
文件用途:主界面UI
*/
//主界面UI初始化回调
function _MainUI_Enter_()
{
}
//主界面UI事件回调
function _MainUI_HandleEvents_(event)
{
}
//主界面UI更新回调
function _MainUI_Update_(deltaTime)
{
}
//主界面UI退出回调
function _MainUI_Exit_()
{
}

View File

View File

@@ -28,5 +28,8 @@
}, },
"Game/ObjectClass/CharacterObject.nut": { "Game/ObjectClass/CharacterObject.nut": {
"description": "角色对象" "description": "角色对象"
},
"UI/MainUI.nut": {
"description": "UI入口"
} }
} }