From 313efb2c20e6773357884595553a90da906be1fb Mon Sep 17 00:00:00 2001 From: antimundo Date: Fri, 26 Apr 2024 12:04:35 +0200 Subject: [PATCH] Fix hit marker not showing --- scenes/game_world/game_world.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/scenes/game_world/game_world.gd b/scenes/game_world/game_world.gd index 114be26..5125d06 100644 --- a/scenes/game_world/game_world.gd +++ b/scenes/game_world/game_world.gd @@ -38,6 +38,7 @@ func _on_timer_timeout() -> void: $CanvasLayer/EndGameCanvas.visible = true func _on_target_destroyed() -> void: + _gameplay_ui.target_destroyed(_get_score(), _get_accuracy()) _play_destroyed_sound() _targets_destroyed += 1 _spawn_target()