fix linux git plugin ( recompiled for 4.2 with new openssl static library )

move despawnfx.gd to misc folder
This commit is contained in:
2024-02-11 13:50:38 +01:00
parent 89e97a200c
commit b9ad0b6aa2
3 changed files with 2 additions and 1 deletions

View File

@@ -115,7 +115,8 @@ func _physics_process(_delta):
if linear_vel.length() > 5: if linear_vel.length() > 5:
new_anim = "walk_" + facing new_anim = "walk_" + facing
$anims.play() anim = new_anim
$anims.play(anim)
else: else:
goto_idle() goto_idle()
pass pass