Animation after Animation

Hey everyone,
I have a short question, how can I play an animation after a other Animation?

As example: Animation 1 → 2sec → Animation 2 → 1sec → Animation 3

Is there a Script or a how to for it?

(Sry for the dumb question, newbie in da house!)

hi;
u can play the animation then start a check to see if animation is playing then u play the next animation;

  while ( GetComponent<Animation>().isPlaying == true)
{
 // wait here 
}

u should use corutine for it :slight_smile: