Version: 2017.3
public EventType type ;

Descripción

El tipo de evento.

using UnityEngine;
using System.Collections;

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