public static float ClampRotaionY(float y) { while (y < 0) { y += 360; } while (y > 360) { y -= 360; } return y; }
沒有留言:
張貼留言