diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 12:46:26 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 12:46:26 -0600 |
commit | 606c1714c654cb247a70c23b335a0aeca91c4c52 (patch) | |
tree | 137cc6d66ddbd6aa2cb6ee500136b952524571a9 /scenes/main.gd | |
parent | 4618fc195210e0565a8dc0662228fce377854c22 (diff) |
You can now press G to meow
Diffstat (limited to 'scenes/main.gd')
-rw-r--r-- | scenes/main.gd | 4 |
1 files changed, 3 insertions, 1 deletions
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: |