This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
0 votes

I want an animated sprite to stop it's animation by pressing a button.
So I wrote a script
func onButton3pressed():
if Input.is
action_pressed("Your Button"): $AnimatedSprite.play("stop")

But nothing happened. What should I do?

Godot version v3.2.3stable.official
in Engine by (28 points)

1 Answer

+1 vote

$AnimatedSprite.stop() is what you're looking for as what your code actually does is tell $AnimatedSprite to play an animation named "stop"

Something to be mindful of is that stop() does not reset your animation

by (6,942 points)

Just for you to know, you can pass a bool to reset or not the animation while calling stop(). It's true by default, see https://docs.godotengine.org/fr/stable/classes/class_animationplayer.html#class-animationplayer-method-stop

Nice adage also good knowledge to have.

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.