Gruppe22.Client.Camera.Move C# (CSharp) 메소드

Move() 공개 메소드

Move the Camera by a specified amount vertically and horizontally
public Move ( Vector2 amount ) : void
amount Vector2 The number of pixels to move the camera
리턴 void
        public void Move(Vector2 amount)
        {
            _position += amount;
        }