From d41af623741dd3a60ddfb79e94fc00b60308ee06 Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Fri, 15 Nov 2024 19:00:30 -0600 Subject: Create microgame spawn timer --- scenes/main.gd | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 scenes/main.gd (limited to 'scenes/main.gd') diff --git a/scenes/main.gd b/scenes/main.gd new file mode 100644 index 0000000..572ab25 --- /dev/null +++ b/scenes/main.gd @@ -0,0 +1,15 @@ +extends Node2D + + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta: float) -> void: + pass + + +func _on_microgame_spawn_timer_timeout() -> void: + print("WAAAHAHAHA MICROGAMES") -- cgit v1.2.3