Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Event.clickCount

public 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.

	function OnGUI() {
		var e : Event = Event.current;
		if (e.isMouse) {
			Debug.Log("Mouse clicks: " + e.clickCount);
		}
	}