fullscreen controls

This commit is contained in:
Victor Turgeon
2023-10-10 20:37:31 -04:00
parent 4ac500f7c4
commit 9d308b5370
2 changed files with 27 additions and 2 deletions

View File

@@ -6,10 +6,19 @@ func _ready():
pass
func _process(delta):
handle_menu_inputs()
if Input.is_action_just_pressed("place_spawnable"):
spawnBat()
spawn_bat()
func spawnBat():
func handle_menu_inputs():
if Input.is_action_just_pressed("fullscreen_toggle"):
if get_window().mode == Window.MODE_EXCLUSIVE_FULLSCREEN:
get_window().mode = Window.MODE_WINDOWED
else:
get_window().mode = Window.MODE_EXCLUSIVE_FULLSCREEN
func spawn_bat():
var bat = batTemplatePath.instantiate()
bat.global_position = get_global_mouse_position()
$"..".add_child(bat)