更改游戏拖动阈值

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));
    }
}

 

以上是关于更改游戏拖动阈值的主要内容,如果未能解决你的问题,请参考以下文章

如何更改加载逻辑回归模型的决策阈值

上下拖动片段

如何更改二元分类的阈值

Android从地图片段底部拖动回收器视图

从片段调用 Google Play 游戏服务

如何在 python scikit-learn 中更改精度和召回的阈值?