no message

This commit is contained in:
Lenheart 2024-12-16 20:33:22 +08:00
parent 670dce02e9
commit 3894e0bd7a
4 changed files with 4 additions and 2 deletions

Binary file not shown.

View File

@ -68,4 +68,5 @@ sqr/User/UI/Window/0_Login.nut
sqr/User/UI/Window/1_Select_Character.nut
sqr/User/UI/Window/233_HUD_Message.nut
sqr/User/main.nut

View File

@ -73,6 +73,7 @@ function TestStage() {
// };
// Window.Init(T);
// print(ObjectCount);
// Sq_CreateWindow(CreateCharacter_SelectBase, "创建角色界面窗口", 0, 0, 1066, 600, 0);
// Sq_CreateWindow(_CreateCharacter, "创建角色界面窗口", 0, 0, 1066, 600, 0);
}

View File

@ -17,6 +17,6 @@ function main(args) {
Game.size = [1066, 600];
Game.v_sync = false;
Game.frame_interval = 10000;
// Game.debug_mode = true;
Game.debug_mode = true;
Game.Run(LoginStage);
}