PlayerWalk.moveLeft C# (CSharp) Method

moveLeft() public method

public moveLeft ( ) : void
return void
    public void moveLeft()
    {
        Anim.SetInteger("AnimState", 1);
        pos += Vector3.left;
        lastInput = "left";
        time = 0;
        transform.localScale = new Vector3(-2.5f, 2.5f, 1);
    }