版本:Unity 6 (6000.0)
语言英语
  • C#

Event.type

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交的内容,但我们会认真审阅用户建议的每一条更改,并在需要时进行更新。

关闭

提交失败

出于某种原因,您的建议更改无法提交。请于几分钟后<a>重试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public EventType type;

说明

事件类型。

其他资源:EventTypeGUI 脚本编写指南

using UnityEngine;

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