Here is the code i have for walking Forward and Sideways (two seperate animations)
if(Input.GetAxis("Vertical") > 0.3)
woman.animation.CrossFade("walking");
else
woman.animation.CrossFade("idle");
if(Input.GetAxis("Horizontal") > 0.3)
woman.animation.CrossFade("sidewaysWalk");
else
woman.animation.CrossFade("idle");
for some reason when i play, it wont play the animations, however when i remove the sideways walking animation line of code, it works. its probably a problem with the sideways walking, but im not sure whats wrong. Any ideas?