Event.current 当前事件

static var current : Event

Description描述

The current event that's being processed right now.

现在正在处理的当前事件。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		Debug.Log("Current detected event: " + Event.current);
	}
}
function OnGUI() {
	Debug.Log("Current detected event: " + Event.current);
}
最后修改:2010年12月31日 Friday 22:49

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。