This robot have two animations. one for legs other for the chair. Now I want to run both animations but what I get is one second only of animation !.
public Animator vb;
// Use this for initialization
void Update () {
vb.Play("Armature|attack"); // for the chair
vb.Play("Armature|idle"); // for the legs
}
How to solve this ?