so im having a huuuuuge problem with this anim
i have two animations. and i want to make the first one plays completely so then it plays number two
heres the script i made, along with solutions i tried and didnt worked
animation.Play("subweapon1");
animation.CrossFadeQueued("subweapon2");
[COLOR="seagreen"](didnt work.. it plays only the first then cut off the secound)[/COLOR]
animation.Play("subweapon1");
if (animation.IsPlaying("subweapon1")) { } else {
animation.Play("subweapon2"); }
[COLOR="seagreen"](didnt freaking work.. it never evers get to play the secound one)[/COLOR]
animation.Play("subweapon1");
animation.Play("subweapon2");
[COLOR="seagreen"](didnt work.. it plays then both at the same bloody time..
and since the first one has more frames, i never even notice that it
played the secound)[/COLOR]