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

Event.numeric

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交的内容,但我们确实会阅读用户提出的每项建议,并在适用情况下进行更新。

关闭

提交失败

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

关闭

取消

public bool numeric;

说明

当前按键是否在小键盘上?(只读)

使用此标志区分主键盘和小键盘上的键。

using UnityEngine;

public class Example : MonoBehaviour { // Creates a Label and prints Numeric Key pad is on/off // depending on the state of the numlock key. void OnGUI() { Event e = Event.current; if (e.numeric) { GUI.Label(new Rect(10, 10, 150, 20), "Numeric Key pad is on"); } else { GUI.Label(new Rect(10, 10, 150, 20), "Numeric Key pad is off"); } } }