Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


clickCount

How many consecutive mouse clicks have we received.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.IMGUIModule
public int clickCount { get; set; }

Remarks

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

Examples

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