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

Event.functionKey

建议修改

成功!

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

关闭

提交失败

由于某些原因,您的建议修改无法提交。请 <a>稍后再试</a>。感谢您抽出时间帮助我们改进 Unity 文档质量。

关闭

取消

public bool functionKey;

描述

当前按键是否为功能键?(只读)

如果当前按键为箭头键、Page Up、Page Down、退格键等键,则返回 true。如果此键需要特殊处理才能在文本编辑中工作,则 functionKey 为开启状态。

using UnityEngine;

public class Example : MonoBehaviour { // Detects if a function Key was pressed if a // function key was pressed, prints its key code. void OnGUI() { Event e = Event.current; if (e.functionKey) { Debug.Log("Pressed: " + e.keyCode); } } }