Version: 2021.2
언어: 한국어
public static Event current ;

설명

The current event that's being processed right now.

using UnityEngine;

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