Version: 2019.2
public static Event current ;

説明

処理中の current イベント

using UnityEngine;

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