How do I make an animation transition to a different animation smoothly?

Let’s say I have an Idle animation, and I want it to transition to 3 different animations depending on a situation, I’m sure there is many ways to do this, like probably stopping the idle and instantly playing the other animation, but is that the most efficient way to do it? is that how most developers do it?

2 Likes

I’ve been curious about this too

2 Likes

you could create a modulescript and have functions in there that read all the join positions from the last frame of the animation and tween them to joint positions in the first frame of the next animation

play(transitionintime)
stop(transitionouttime)

Huh? Could you elaborate please?

You can tween parts while playing an Animation?

im saying you can tween after the animation
or stop the animation early then tween

1 Like

animation:play(transitionintime)

What does that parameter exactly do?

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.