PlayerWalk.moveRight C# (CSharp) Метод

moveRight() публичный Метод

public moveRight ( ) : void
Результат void
    public void moveRight()
    {
        Anim.SetInteger("AnimState", 1);
        pos += Vector3.right;
        lastInput = "right";
        time = 0;
        transform.localScale = new Vector3(2.5f, 2.5f, 1);
    }