이 페이지가 있는 버전:
이 페이지가 없는 버전:
The type of event.
See Also: EventType, GUI Scripting Guide.
using UnityEngine;public class Example : MonoBehaviour { // Prints the current event detected. void OnGUI() { Debug.Log("Current event detected: " + Event.current.type); } }