This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BitBlaster/objects/o_start_menu/Step_0.gml
2025-04-20 22:37:10 +03:00

23 lines
364 B
Plaintext

if global.start_key_pressed {
instance_destroy();
instance_create_depth(0, 0, -10000, o_mode_menu);
}
if global.space_key_pressed {
instance_destroy();
instance_create_depth(0, 0, -10000, o_tutorial);
}
if global.shift_key_pressed {
instance_destroy();
instance_create_depth(0, 0, -10000, o_credits);
}
if global.pause_key_pressed {
game_end();
}