728x90
반응형
#elif UNITY_ANDROID
if (Input.touchCount > 0)
{
if (Input.GetTouch(0).phase == TouchPhase.Began)
{
FirstPoint = Input.GetTouch(0).position;
xAngleTemp = xAngle;
yAngleTemp = yAngle;
}
if (Input.GetTouch(0).phase == TouchPhase.Moved)
{
SecondPoint = Input.GetTouch(0).position;
xAngle = xAngleTemp + (SecondPoint.x - FirstPoint.x) * 180 / Screen.width;
yAngle = yAngleTemp - (SecondPoint.y - FirstPoint.y) * 90 / Screen.height;
this.transform.localRotation = Quaternion.Euler(yAngle, xAngle, 0.0f);
}
}
#endif
728x90
반응형
'Unity' 카테고리의 다른 글
[Unity] 부모 오브젝트, 자식 오브젝트 가져오기(Script) (0) | 2019.08.30 |
---|---|
[Unity] Mobile Touch로 오브젝트 배치하기(쉽게 정리) (0) | 2019.08.30 |
[Unity] List에 저장된 오브젝트 Destroy 주의 사항 (0) | 2019.08.28 |
Undo 기능 만들기 (0) | 2019.08.21 |
[Unity] Mobile 개발 필수 (0) | 2019.08.16 |