Fix Sorting In-Game UI

main
Luna Brovchuk 2023-10-01 20:01:53 +02:00
parent d15f1c528f
commit 99c56fb46f
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ script = ExtResource( 2 )
use_parent_material = true
frames = ExtResource( 1 )
animation = "idle"
frame = 3
frame = 1
playing = true
centered = false

View File

@ -17,6 +17,6 @@ func return_to_menu():
func add_health(amount):
health = clamp(health + amount, 0, 3)
get_tree().get_root().get_node("Game/UIWrapper/UI/Health/HealthSprite").frame = health
get_tree().get_root().get_node("Game/UIWrapper/UI/Left/Health/HealthSprite").frame = health
if health == 0:
return_to_menu() # TODO endgame