使用Unity实现触屏按下、拖拽、抬起的代码。

1、触屏按下:

using UnityEngine;
public class Touch : MonoBehaviour
{
void Update ()
{
if (Input.touchCount > 0)
{
Touch touch = Input.GetTouch(0);
if (touch.phase == TouchPhase.Began)
{
Debug.Log("Touch Began");
}
}
}
}

2、拖拽:

using UnityEngine;
public class Touch : MonoBehaviour
{
void Update ()
{
if (Input.touchCount > 0)
{
Touch touch = Input.GetTouch(0);
if (touch.phase == TouchPhase.Moved)
{
Vector2 pos = touch.position;
Debug.Log("Touch Moved to x:" + pos.x + " y: " + pos.y);
}
}
}
}

3、抬起:

using UnityEngine;
public class Touch : MonoBehaviour
{
void Update ()
{
if (Input.touchCount > 0)
{
Touch touch = Input.GetTouch(0);
if (touch.phase == TouchPhase.Ended)
{
Debug.Log("Touch Ended");
}
}
}
}

 

FROM CHATGPT

posted @   MOEGARN游戏工作室  阅读(692)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
点击右上角即可分享
微信分享提示