public EventType type ;

描述

事件的类型。

另请参阅:EventTypeGUI 脚本指南

using UnityEngine;
using System.Collections;

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