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);
    }