Add more menus and endless mode

This commit is contained in:
Andrew Trieu
2025-04-20 22:37:10 +03:00
committed by Andrew Trieu
parent d2beb3540a
commit 2f75df211f
44 changed files with 651 additions and 65 deletions

View File

@@ -0,0 +1,16 @@
if global.back_key_pressed {
instance_destroy();
instance_create_depth(0, 0, -9000, o_start_menu);
}
if global.one_key_pressed {
instance_destroy();
}
if global.two_key_pressed {
global.infinite_mode = true;
global.enemy_active_max = 100;
instance_destroy();
}