Hey, newbie indie dev here
I'm trying to write a SkeletonAnimation script that will control my character's movement as well as switch animations based on certain parameters. Since I do not know much about coding, I followed a Think Citric tutorial which worked great, but then I tried to add a few lines of code for a run animation, and here was where I hit the wall.
Hours later, the best I could get is this: everything works, the only problem is my character won't actually move when running. He does play out the run animation correctly, but he will not move forward or backward. So, could anyone take a look at my script please? Any help or pointers would be much appreciated!
Also, please note that I'm using W and S to run - I did it as a test because I do not know yet how to do it otherwise, just fyi.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Spine.Unity;
public class Klym : MonoBehaviour
{
public SkeletonAnimation skeletonAnimation;
public AnimationReferenceAsset idle, walking, running;
public string currentState;
public float speed;
public float movement;
public string currentAnimation;
public float runspeed;
public float run;
private Rigidbody2D rigidbody;
// Start is called before the first frame update
void Start()
{
rigidbody = GetComponent<Rigidbody2D>();
currentState = "Idle";
SetCharacterState(currentState);
}
// Update is called once per frame
void Update()
{
Move();
}
//sets character animation
public void SetAnimation(AnimationReferenceAsset animation, bool loop, float timeScale)
{
if(animation.name.Equals(currentAnimation))
{
return;
}
skeletonAnimation.state.SetAnimation(0, animation, loop).TimeScale = timeScale;
currentAnimation = animation.name;
}
//checks character state and sets the animation accordingly
public void SetCharacterState(string state)
{
if (state.Equals("Walking"))
{
SetAnimation(walking, true, 1f);
}
else if(state.Equals("Running"))
{
SetAnimation(running, true, 1f);
}
else if(state.Equals("Idle"))
{
SetAnimation(idle, true, 1f);
}
}
public void Move()
{
run = Input.GetAxis("Vertical");
rigidbody.velocity = new Vector2(run * runspeed, rigidbody.velocity.y);
movement = Input.GetAxis("Horizontal");
rigidbody.velocity = new Vector2(movement * speed, rigidbody.velocity.y);
if (movement != 0)
{
SetCharacterState("Walking");
if (movement > 0)
{
transform.localScale = new Vector2(0.11f, 0.11f);
}
else if (movement < 0)
{
transform.localScale = new Vector2(-0.11f, 0.11f);
}
}
else if (run != 0)
{
SetCharacterState("Running");
if (run > 0)
{
transform.localScale = new Vector2(0.11f, 0.11f);
}
else if (run < 0)
{
transform.localScale = new Vector2(-0.11f, 0.11f);
}
}
else
{
SetCharacterState("Idle");
}
}
}