Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

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.

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