更改游戏拖动阈值
Posted sy-liu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改游戏拖动阈值相关的知识,希望对你有一定的参考价值。
using UnityEngine; using UnityEngine.EventSystems; public class DragThresholdUtil : MonoBehaviour { // Start is called before the first frame update void Start() { int defaultDrayTheshold = EventSystem.current.pixelDragThreshold; EventSystem.current.pixelDragThreshold = Mathf.Max(defaultDrayTheshold, (int)(defaultDrayTheshold * Screen.dpi / 160f)); } }
以上是关于更改游戏拖动阈值的主要内容,如果未能解决你的问题,请参考以下文章