我是靠谱客的博主 冷静水池,最近开发中收集的这篇文章主要介绍Unity 手指触摸的方向(单手),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最近写了一个跑酷游戏,总结下里面的知识点:O(∩_∩)O~

using UnityEngine;
using System.Collections;




public class Demo : MonoBehaviour
{
    public Vector3 lastMonseDown;

    /// <summary>
    /// 判断手指触摸的方向
    /// </summary>
    /// <returns></returns>
    TouchDir GetTouchDir()
    {
        //记录第一次手指点击的坐标点
        if (Input.GetMouseButtonDown(0))
        {
            lastMonseDown = Input.mousePosition;
        }


        //UICamera.hoveredObject防止NGUI点击穿透问题
        if (Input.GetMouseButtonUp(0) && UICamera.hoveredObject == null)
        {
            //结束坐标-开始坐标
            Vector3 mouseUp = Input.mousePosition;
            Vector3 touchOffset = mouseUp - lastMonseDown;

            //滑动超过50像素,算一次正确的滑动
            if (Mathf.Abs(touchOffset.x) > 50 || Mathf.Abs(touchOffset.y) > 50)
            {
                if (Mathf.Abs(touchOffset.x) > Mathf.Abs(touchOffset.y) && touchOffset.x > 0)
                {
                    return TouchDir.Right;
                }
                else if (Mathf.Abs(touchOffset.x) > Mathf.Abs(touchOffset.y) && touchOffset.x < 0)
                {
                    return TouchDir.Left;
                }
                else if (Mathf.Abs(touchOffset.x) < Mathf.Abs(touchOffset.y) && touchOffset.y > 0)
                {

                    return TouchDir.Top;
                }
                else if (Mathf.Abs(touchOffset.x) < Mathf.Abs(touchOffset.y) && touchOffset.y < 0)
                {

                    return TouchDir.Bottom;
                }
            }
            else
            {
                return TouchDir.None;
            }
        }

        return TouchDir.None;
    }


}


/// <summary>
/// 触摸的方向
/// </summary>
public enum TouchDir
{
    None,
    Left,
    Right,
    Top,
    Bottom
}

转载于:https://www.cnblogs.com/plateFace/p/4202316.html

最后

以上就是冷静水池为你收集整理的Unity 手指触摸的方向(单手)的全部内容,希望文章能够帮你解决Unity 手指触摸的方向(单手)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部