How to remove Animations Transitions

Is there a way to make it so that there isn’t any transition between each animations? After anim1 ends, I want anim2 to play without a transition in between them.

Yes, I think. AnimationTrack:Play() accepts three parameters: fadeTime, weight, and speed. If you set fadeTime to 0, I belive that should do the trick.

animTrack:Play(0)
7 Likes

That did it! Thank you so much!!

1 Like