Fix damages and include true pause on death screen

This commit is contained in:
Renarde-dev 2025-01-25 04:02:12 +01:00
parent 05ff226721
commit 9619b8d346
Signed by: renarde
GPG key ID: 5B8FE0B3816369DE
3 changed files with 3 additions and 1 deletions

View file

@ -13,4 +13,5 @@ func _process(delta: float) -> void:
func _on_main_menu_button_pressed() -> void:
get_tree().paused = false
retour_menu.emit()

View file

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

View file

@ -50,3 +50,4 @@ func on_ecran_mort_retour_menu() -> void:
func on_death() -> void :
mort.visible = true
get_tree().paused = true