Improved animations

This commit is contained in:
2024-02-05 17:38:58 +01:00
parent 1029a5ea27
commit 08292dc20a
6 changed files with 323 additions and 15 deletions

View File

@ -14,7 +14,7 @@ func _process(_delta):
if character.velocity.y > 0:
play("human/jump")
elif character.velocity.y < 0:
play("human/falling")
play("human/fall")
elif character.direction != Vector3.ZERO:
play("human/run")
else: