PlayerWalk.moveRight C# (CSharp) Method

moveRight() public method

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