Unity 手机触屏事件

Unity 触屏操作  
当将Unity游戏运行到IOS或Android设备上时,桌面系统的鼠标左键可以自动变为手机屏幕上的触屏操作,但如多点触屏等操作却是无法利用鼠标操作进行的。Unity的Input类中不仅包含桌面系统的各种输入功能,也包含了针对移动设备触屏操作的各种功能,下面介绍一下Input类在触碰操作上的使用。  
  
首先介绍一下Input.touches结构,这是一个触摸数组,每个记录代表着手指在屏幕上的触碰状态。每个手指触控都是通过Input.touches来描述的:  
  
fingerId  
  
触摸的唯一索引  
  
position  
  
触摸屏幕的位置  
  
deltatime  
  
从最后状态到目前状态所经过的时间  
  
tapCount  
  
点击数。Andorid设备不对点击计数,这个方法总是返回1  
  
deltaPosition  
  
自最后一帧所改变的屏幕位置  
  
phase  
  
相位,也即屏幕操作状态  
  
其中phase(状态)有以下这几种:  
  
Began  
  
手指刚刚触摸屏幕  
  
Moved  
  
手指在屏幕上移动  
  
Stationary  
  
手指触摸屏幕,但自最后一阵没有移动  
  
Ended  
  
手指离开屏幕  
  
Canceled  
  

系统取消触控跟踪,原因如把设备放在脸上或同时超过5个触摸点  



  1. 下面通过一段代码来进行移动设备触摸操作的实现:  
  2.   
  3. using UnityEngine;  
  4. using System.Collections;  
  5.   
  6. public class AndroidTouch : MonoBehaviour {  
  7.   
  8.     private int isforward;//标记摄像机的移动方向  
  9.     //记录两个手指的旧位置  
  10.     private Vector2 oposition1=new Vector2();  
  11.     private Vector2 oposition2=new Vector2();  
  12.   
  13.     Vector2 m_screenPos = new Vector2(); //记录手指触碰的位置  
  14.   
  15.     //用于判断是否放大  
  16.     bool isEnlarge(Vector2 oP1, Vector2 oP2, Vector2 nP1, Vector2 nP2)  
  17.     {  
  18.         //函数传入上一次触摸两点的位置与本次触摸两点的位置计算出用户的手势  
  19.         float leng1 = Mathf.Sqrt((oP1.x - oP2.x) * (oP1.x - oP2.x) + (oP1.y - oP2.y) * (oP1.y - oP2.y));  
  20.         float leng2 = Mathf.Sqrt((nP1.x - nP2.x) * (nP1.x - nP2.x) + (nP1.y - nP2.y) * (nP1.y - nP2.y));  
  21.         if (leng1 < leng2)  
  22.         {  
  23.             //放大手势  
  24.             return true;  
  25.         }  
  26.         else  
  27.         {  
  28.             //缩小手势  
  29.             return false;  
  30.         }  
  31.     }  
  32.   
  33.     void Start()  
  34.     {  
  35.         Input.multiTouchEnabled = true;//开启多点触碰  
  36.     }  
  37.   
  38.     void Update()  
  39.     {  
  40.         if (Input.touchCount <= 0)    
  41.             return;  
  42.         if (Input.touchCount == 1) //单点触碰移动摄像机  
  43.         {  
  44.             if (Input.touches[0].phase == TouchPhase.Began)  
  45.                 m_screenPos = Input.touches[0].position;   //记录手指刚触碰的位置  
  46.             if (Input.touches[0].phase == TouchPhase.Moved) //手指在屏幕上移动,移动摄像机  
  47.             {  
  48.                 transform.Translate(new Vector3( Input.touches[0].deltaPosition.x * Time.deltaTime, Input.touches[0].deltaPosition.y * Time.deltaTime, 0));  
  49.             }  
  50.         }  
  51.   
  52.         else if (Input.touchCount > 1)//多点触碰  
  53.         {  
  54.             //记录两个手指的位置  
  55.             Vector2 nposition1 = new Vector2();  
  56.             Vector2 nposition2 = new Vector2();  
  57.   
  58.             //记录手指的每帧移动距离  
  59.             Vector2 deltaDis1 = new Vector2();  
  60.             Vector2 deltaDis2 = new Vector2();  
  61.   
  62.             for (int i = 0; i < 2; i++)  
  63.             {  
  64.                 Touch touch = Input.touches[i];  
  65.                 if (touch.phase == TouchPhase.Ended)  
  66.                     break;  
  67.                 if (touch.phase == TouchPhase.Moved) //手指在移动  
  68.                 {  
  69.   
  70.                     if (i == 0)  
  71.                     {  
  72.                         nposition1 = touch.position;  
  73.                         deltaDis1 = touch.deltaPosition;  
  74.                     }  
  75.                     else  
  76.                     {  
  77.                         nposition2 = touch.position;  
  78.                         deltaDis2 = touch.deltaPosition;  
  79.   
  80.                         if (isEnlarge(oposition1, oposition2, nposition1, nposition2)) //判断手势伸缩从而进行摄像机前后移动参数缩放效果  
  81.                             isforward = 1;  
  82.                         else  
  83.                             isforward = -1;  
  84.                     }  
  85.                     //记录旧的触摸位置  
  86.                     oposition1 = nposition1;  
  87.                     oposition2 = nposition2;  
  88.                 }  
  89.                 //移动摄像机  
  90.                 Camera.main.transform.Translate(isforward*Vector3.forward * Time.deltaTime*(Mathf.Abs(deltaDis2.x+deltaDis1.x)+Mathf.Abs(deltaDis1.y+deltaDis2.y)));  
  91.             }    
  92.         }  
  93.     }  
  94. }  

将这个脚本绑定在主摄像机上,发现单触摸操作可上下左右移动摄像机,双触摸操作可以缩放。  

  

导出Android 在手机上运行,可以发现触摸起了效果。  


转载出处:http://blog.csdn.net/u014550279/article/details/50537713

你可能感兴趣的:(Unity)