Version: 2017.2
public static Event current ;

説明

処理中の current イベント

using UnityEngine;
using System.Collections;

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