This is probably very simple, but I'm new at this...
I'm trying to make a 4-way 2D movement script and everything works fine until I start messing with animations.
My current problem is that the script component at the bottom of this
![components][1]
should look like this when I reset it, but it doesn't.
![alt text][2]
[1]: /storage/temp/33293-charcomp.png
[2]: /storage/temp/33294-scriptcomp.png
I know there's something I'm missing, but I can't figure out what it is, and nothing I've found online has helped.
this is the script. Hopefully it worked, because the code formatting doesn't seem to work for me all the time...
var Speed : float = 0.5; // Movement Speed
static var Move : int = 1;
var IsMoving : boolean = false;
var anim : Animator; // The animator
function Start ()
{
anim = GetComponent(Animator);
}
function Update(){
if(IsMoving == true){
IsMoving = false;
}
if(Input.GetKey(KeyCode.UpArrow) && IsMoving == false){
transform.Translate(Vector2(0, Speed),Move);
IsMoving = true;
anim.SetInteger("Direction", 3); // Direction the character is facing. 0, 1, 2, 3 = down, left, right, up
}
if(Input.GetKey(KeyCode.DownArrow) && IsMoving == false){
transform.Translate(Vector2(0, Speed * -1),Move);
IsMoving = true;
anim.SetInteger("Direction", 0);
}
if(Input.GetKey(KeyCode.RightArrow) && IsMoving == false){
transform.Translate(Vector2(Speed,0),Move);
IsMoving = true;
anim.SetInteger("Direction", 2);
}
if(Input.GetKey(KeyCode.LeftArrow) && IsMoving == false){
transform.Translate(Vector2(Speed * -1,0),Move);
IsMoving = true;
anim.SetInteger("Direction", 1);
}
}
↧