Event.type 类型

var type : EventType

Description描述

The type of event.

事件的类型。

参见:EventType

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		Debug.Log("Current event detected: " + Event.current.type);
	}
}
// Prints the current event detected.
//打印当前检测的事件
function OnGUI () {
	Debug.Log("Current event detected: " + Event.current.type);
}
最后修改:2010年12月31日 Friday 1:26

本脚本参考基于Unity 3.4.1f5

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