How to check if the animation stopped playing

Godot Version

4.3

Question

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.