[문제]
- 스크롤 안에 프리팹 버튼을 생성하면 잘 안눌림
- 특정 디바이스에서 버튼 잘 안눌림
[해결 방법]
EventSystem 의 터치감도를 조절한다.
private const float inchToCm = 2.54f; [SerializeField] private EventSystem eventSystem = null ; [SerializeField] private float dragThresholdCM = 0.5f; //For drag Threshold private void SetDragThreshold() { if (eventSystem != null ) { eventSystem.pixelDragThreshold = (int)(dragThresholdCM * Screen.dpi / inchToCm); } } void Awake() { SetDragThreshold(); } |
'유니티 > 꿀팁' 카테고리의 다른 글
Firebase - Unity SDK 이전 버전 다운로드 (0) | 2020.09.15 |
---|---|
프리팹 UI생성시 크기가 디바이스마다 다른 경우 (0) | 2018.03.28 |