Godot Version
4.3
Question
How to make a wait for when the animation stopped playing? Like wait until the animation stopped
4.3
How to make a wait for when the animation stopped playing? Like wait until the animation stopped
If you’re talking about an AnimationPlayer
node:
await $Your_animation_player_node.animation_finished
A note is that only works if your animation don’t have the auto-loop enabled.