包含此页的版本:
不含此页的版本:
事件的类型。
另请参阅:EventType、GUI 脚本指南。
using UnityEngine;public class Example : MonoBehaviour { // Prints the current event detected. void OnGUI() { Debug.Log("Current event detected: " + Event.current.type); } }