As mentioned above, I am wondering if I should use:
$AnimationPlayer.stop()
$AnimationPlayer.play("new_anim")
every time I make a change in animation, or should I use:
$AnimationPlayer.play("new_anim")
to immediately switch into new one?
I have no idea if either of these two are bad habits, so would like to know some opinion on that.
As an example, is doing something like this correct for Godot?
if movement_dir != 0:
animationPlayer.play("walk")
else:
animationPlayer.play("idle")