Version: 2017.3
public EventType type ;

설명

The type of event.

using UnityEngine;
using System.Collections;

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