How to trigger an animator transition after the current animation has finished?

Say I have a landing animation that needs to be played once after the jump animation, then after the landing animation I need to trigger a transition to the run animation.

What I’m doing to accomplish this effect is to tweak the Exit Time in the transition landing → run to a duration that “feels” right but I wonder if there is a way to automatically trigger the transition once the landing animation is finished.

Would love an answer to this one!..3 years later!

Just do a coroutine right after the landing animation is started and WaitForSeconds(landingAnimationLength); and then trigger your animation when the yield statement is finished.