From 57014a6756f8bfcff7a45387f7e8bb44afdb6e5a Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Fri, 15 Nov 2024 19:04:54 -0600 Subject: Spawn a window when the microgame timer goes off --- scenes/main.gd | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scenes/main.gd') diff --git a/scenes/main.gd b/scenes/main.gd index 572ab25..d11845c 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -13,3 +13,6 @@ func _process(delta: float) -> void: func _on_microgame_spawn_timer_timeout() -> void: print("WAAAHAHAHA MICROGAMES") + + var window = Window.new() + add_child(window) -- cgit v1.2.3