Spawn a window when the microgame timer goes off

This commit is contained in:
Zoey Kitt 2024-11-15 19:04:54 -06:00
parent d41af62374
commit 57014a6756

View file

@ -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)