diff options
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: |