Hi. I am using the character controller and I added another VERY short script so my character could attack. Whenever I play the game, the character does the attack animation but DOESN’T do the idle animation. It is as if the attack animation got rid of every animation except its own. Is that attack script simply overriding the character controller?
Here is my script:
#pragma strict
function Start () {
}
function Update () {
(Input.GetButton("Scratch");
animation.CrossFade("Slash");
}
If you have an answer please tell me, I need this answered to proceed.
Thanks!