princesse: correction des warnings

Encore une fois, j'en ai laissé trainer. Vilain Thomas!
This commit is contained in:
Thomas Lavocat
2023-05-01 13:59:12 +02:00
parent e23c2b0e17
commit a82237e0dd
2 changed files with 3 additions and 4 deletions

View File

@@ -456,7 +456,7 @@ func get_new_animation() -> String:
animation_new = "jumping"
return animation_new
func _physics_process(delta: float) -> void:
func _physics_process(_delta: float) -> void:
if dead:
return
compute_state()
@@ -487,5 +487,5 @@ func _ready():
locked = false
dead = false
func _on_death_player_animation_finished(anim_name: StringName) -> void:
func _on_death_player_animation_finished(_anim_name: StringName) -> void:
get_tree(). reload_current_scene()