Pretty vague of a question but I can’t start animations when I press a button. It just simply doesn’t work. Here’s the test script (the one I’m currently using):
var anim: Animation;
function Update(){
if(Input.GetKeyDown("w")){
anim.IsPlaying("anim");
}
}