본문 바로가기
유니티

유니티 터치 이동

by 노튜 2020. 9. 11.
728x90

 

조이스틱 참고자료

 

https://www.youtube.com/watch?v=uSnZuBhOA2U

 

 

터치스크린 zoom

 

https://learn.unity.com/tutorial/getting-mobile-input#5c7f8528edbc2a002053b4af

 

Getting Mobile Input - Unity Learn

Modern mobile devices have screens that can receive accurate multitouch inputs from the user and from multiple device sensors. In this tutorial you will learn how to get inputs from the touchscreen and accelerometer, and build a basic "pinch to zoom" mecha

learn.unity.com

 

터치 블럭 on UI

 

https://www.youtube.com/watch?v=EVZiv7DLU6E

 

Event

 

          if (EventSystem.current.IsPointerOverGameObject(0)) 
            { 
                Debug.Log( "Pointer over gameobject") ; 
                return; 
            }

포인터 ID 0 = Phone 1 = Webplayer editor etc

 

참고 

 

https://m.blog.naver.com/PostView.nhn?blogId=yoohee2018&logNo=220839396232&proxyReferer=https:%2F%2Fwww.google.com%2F

 

IsPointerOverGameObject / RayCast가 UI를 통과하지 않게하기

유니티에서 RayCast를 사용하는 경우가 많은데, 이때 Canvas의 UI 오브젝트 위에서 클릭/터치하는 경...

blog.naver.com

 

 

 

유니티 카메라 기준 캐릭터 이동하기 참고자료

출처 sumpfkraut

https://forum.unity.com/threads/solved-moving-object-in-the-direction-of-camera-view.30330/

728x90