Input.touchCount 触摸数量

static var touchCount : int

Description描述

Number of touches (Read Only).

触摸的数量。每一帧之内都一定不会改变(只读)

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Update() {
		if (Input.touchCount > 0)
			print(Input.touchCount);

	}
}
function Update () {
	if (Input.touchCount > 0) {
		print(Input.touchCount);
	}
}
最后修改:2011年3月11日 Friday 19:10

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。