关闭debug

This commit is contained in:
Lenheart 2024-12-15 20:16:01 +08:00
parent d8faa49866
commit fc62731bcd
1 changed files with 3 additions and 1 deletions

View File

@ -9,12 +9,14 @@
function main(args) {
local Game = GameWindow();
Game.title = "Yosin & Kiwano";
Game.bg_color = [255.0, 255.0, 255.0, 255.0];
Game.size = [1066, 600];
Game.v_sync = false;
Game.frame_interval = 10000;
Game.debug_mode = true;
// Game.debug_mode = true;
Game.Run(LoginStage);
}