Unity3D判断触摸方向

Posted Lumious

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity3D判断触摸方向相关的知识,希望对你有一定的参考价值。

据说

Temple Run(神庙逃亡)

就是用这种方式操作的

废话不多说

直接上代码

 

using UnityEngine;
using System.Collections;

public class Touch : MonoBehaviour
{
    private Vector2 beginPos;
    // Use this for initialization
    void Start()
    {
    }

    // Update is called once per frame
    void Update()
    {
        TouchDirection();
    }

    void TouchDirection()
    {
        if (Input.touchCount <= 0)
            return;

        if (Input.touchCount == 1)
        {
            if (Input.touches[0].phase == TouchPhase.Began)
            {
                beginPos = Input.touches[0].positon;
            }
            else if (Input.touches[0].phase == TouchPhase.Moved)
            {
            }

            if (Input.touches[0].phase == TouchPhase.Ended && Input.touches[0].phase != TouchPhase.Canceled)
            {
                Vector2 pos = Input.touches[0].position;
                if (Mathf.Abs(beginPos.x = pos.x) > Mathf.Abs(beginPos.y = pos.y))
                {
                    if (beginPos.x > pos.x)
                    {
                        //向左
                    }
                    else
                    {
                        //向右
                    }
                }
                else
                {
                    if (beginPos.y > pos.y)
                    {
                        //向下
                    }
                    else
                    {
                        //向上
                    }
                }
            }
        }
    }
}

声明:此博客为个人学习之用,如与其他作品雷同,纯属巧合,并请明示指出

以上是关于Unity3D判断触摸方向的主要内容,如果未能解决你的问题,请参考以下文章

移动端判断触摸的方向

在unity3D中,点击=触摸?

片段如何处理触摸?

在 Unity 3D 中使用触摸输入在地形上移动相机

(UNITY3d android 游戏)当我不触摸屏幕时,我的 fps 比我触摸时低

android:当用户触摸片段外部时,我如何关闭片段?