patch de la baisse de vie dans la barre de vie

This commit is contained in:
E213872U 2025-01-25 03:16:00 +01:00
parent 5766858c9b
commit 1430e26961

View file

@ -24,7 +24,10 @@ func _process(delta: float) -> void:
pass
func set_life(pv : int) -> void :
for i in range(life, pv):
var step = 1
if pv > life :
step = -1
for i in range(life, pv, step):
update_life(i)
update_life(pv)