Answers for "godot pause and unpause animation"

0

godot pause and unpause animation

to pause the animation, Write "animationPlayer.stop(false)"

false just means that we're not resetting the animation.
true would mean that we are resetting the animation.

To resume the animation just write "animationPlayer.play()"
Posted by: Guest on June-03-2020

Browse Popular Code Answers by Language