Event.shift 键盘Shift键

var shift : bool

Description描述

Is Shift held down? (Read Only)

Shift键按住了么(只读)?

Returns true if any Shift key is held down.

如果Shift键被按住返回真。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		Event e = Event.current;
		if (e.shift)
			Debug.Log("Shift was pressed :O");

	}
}
// Detects if the shift key was pressed
//检测如果shift键被按住
function OnGUI() {
	var e : Event = Event.current;
	if (e.shift) {
		Debug.Log("Shift was pressed :O");
	}
}
最后修改:2010年12月31日 Friday 18:58

本脚本参考基于Unity 3.4.1f5

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