Versions with this page:
Versions without this page:
事件的类型。
另请参阅:EventType、GUI 脚本指南。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void OnGUI() { Debug.Log("Current event detected: " + Event.current.type); } }