Can i increase animation transition time?

So… whenever you play an animation, there is always a quick transition between the current animation, and the animation played, is there a way to remove or increase the time of the transition?

You can use:

 AnimationTrack:AdjustSpeed(2) -----speed 1 is its default speed
1 Like

AnimationTrack:Play(--transitiontime)

2 Likes

AnimationTrack:Play() and AnimationTrack:Stop() have a Fade Time parameter that it takes into account. It will fade the animation weight:

AnimTrack2:Play(0.5)

wait(5)

AnimTrack2:Stop(0.5)
1 Like