From 606c1714c654cb247a70c23b335a0aeca91c4c52 Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Sat, 16 Nov 2024 12:46:26 -0600 Subject: You can now press G to meow --- scenes/main.gd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scenes/main.gd') diff --git a/scenes/main.gd b/scenes/main.gd index e9537d8..e5dedb8 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -8,7 +8,9 @@ func _ready() -> void: # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta: float) -> void: - pass + # The most important functionality + if Input.is_action_just_pressed("G"): + $Meow.play() func _on_microgame_spawn_timer_timeout() -> void: -- cgit v1.2.3