Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

Event.clickCount

Switch to Manual
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);
		}
	}