Forum rules - please read before posting.

Walk Backwards animation

Is there a parameter to play a walk back animation? 

Comments

  • edited July 2016
    In what animation engine?
  • I was able to code it myself : 

    if (Input.GetAxis("Vertical") < -.1)
            {
                animator.SetBool("Moonwalk", true);
            }

            if (Input.GetAxis("Vertical") > -.1)
            {
                animator.SetBool("Moonwalk", false);
            }
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Welcome to the official forum for Adventure Creator.