Versions with this page:
Versions without this page:
Is this event a mouse event? (Read Only)
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void OnGUI() { Event e = Event.current; if (e.isMouse) Debug.Log("Detected a mouse event!"); } }