Event.clickCount 鼠标点击数

var clickCount : int

Description描述

How many consecutive mouse clicks have we received.

我们收到的鼠标连续点击多少次。

Used in EventType.MouseDown event; use this to differentiate between a single and double clicks.

EventType.MouseDown事件使用。使用这个不同于单击和双击。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
	Event e = Event.current;
	if (e.isMouse)
		Debug.Log("Mouse clicks: " + e.clickCount);

	}
}
function OnGUI() {
	var e : Event = Event.current;
	if (e.isMouse) {
		Debug.Log("Mouse clicks: " + e.clickCount);
	}
}
最后修改:2010年12月31日 Friday 23:13

本脚本参考基于Unity 3.4.1f5

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