Content-Length: 18397 | pFad | https://docs.unity3d.com/ScriptReference/../Manual/../ScriptReference/Event-clickCount.html
How many consecutive mouse clicks have we received.
Used in EventType.MouseDown event; use this to differentiate between a single and double clicks.
using UnityEngine;
public class Example : MonoBehaviour { void OnGUI() { Event e = Event.current; if (e.isMouse) { Debug.Log("Mouse clicks: " + e.clickCount); } } }
Fetched URL: https://docs.unity3d.com/ScriptReference/../Manual/../ScriptReference/Event-clickCount.html
Alternative Proxies: