This commit is contained in:
Gerard Gascón 2025-04-24 17:06:24 +02:00
commit 18efc36800
161 changed files with 5008 additions and 0 deletions

12
scripts/spinner_tester.gd Normal file
View file

@ -0,0 +1,12 @@
extends TextureRect
@onready var manager = $"../GameManager"
func _ready():
pass # Replace with function body.
func _process(delta):
if manager.dead_spinner:
visible = true
else:
visible = false