Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


current

The current event that's being processed right now.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.UICommonModule
public static Event current { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ void OnGUI() { Debug.Log("Current detected event: " + Event.current); }}