patch de la baisse de vie dans la barre de vie
This commit is contained in:
parent
5766858c9b
commit
1430e26961
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue