1.
Screen.sleepTimeout = SleepTimeout.NeverSleep;
2.
스크롤안에 버튼이 들어가서 잘 안눌리는 경우가 발생한다.
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(); } |
http://knightk.tistory.com/12
3. 서버 연결상태 확인 wifi lte 연결안된상태
https://docs.unity3d.com/ScriptReference/NetworkReachability.ReachableViaLocalAreaNetwork.html
'유니티 > 꿀팁ㅇㅇㅇ' 카테고리의 다른 글
가비지 컬렉션이란? (0) | 2018.04.26 |
---|---|
프레임 (0) | 2018.04.26 |
[이펙트] 텍스쳐 최적화 (1) | 2018.04.19 |
유용하게 쓰이는 Mathf 함수 (0) | 2018.03.27 |
코루틴(Coroutine) #1 (0) | 2017.07.29 |