Speed up/Slow Down Animation Player

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By lavaduder
:warning: Old Version Published before Godot 3 was released.

One of my animations is not moving fast enough. Is there a way to speed up the play back of the Animation Player node?

:bust_in_silhouette: Reply From: kidscancode

AnimationPlayer has a Speed property in the Inspector. It can also be accessed in code by set_speed().

For anyone who stumbled across this question, the syntax has been changed and the new syntax is playback_speed

for example, playback_speed = 2

KripC2160 | 2021-02-08 13:33

For anyone who stumbled across this question and is using AnimatedSprite, you need to use the speed_scale property. For example, speed_scale = 0.5

Volmir | 2022-08-17 20:58