This commit is contained in:
algodoogle
2026-07-27 13:47:50 +01:00
parent 34a649f507
commit c758771a75
11 changed files with 320 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
extends Node
func _ready() -> void:
$"..".visible = false
# Listen for the game over signal from GameManager
Signals.game_over.connect(_on_game_over)
func _on_game_over() -> void:
$"..".visible = true