-
What do you want to achieve? Keep it simple and clear!
I want to play an existing animation backwards -
What is the issue? Include screenshots / videos if possible!
AnimationTrack:AdjustSpeed(-1) isn’t reversing the animation and instead plays normally but not backwards -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
only AnimationTrack:AdjustSpeed(-1)
11 Likes
The problem was that AnimationTrack:Play() changes the speed to default 1.
So I directly set it with AnimationTrack:Play(0.100000001, 1, -1)
0.100000001 - Length (Default)
1 (Weight)
-1 (Speed)
33 Likes