版本:Unity 6 (6000.0)
语言中文(简体)
  • C#

Event.command

建议更改

提交成功!

感谢您帮助我们提升 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实仔细阅读了用户所建议的每一条变更,并在合适的地方进行更新。

关闭

提交失败

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

关闭

取消

public bool command;

说明

是否按住了 Command/Windows 键?(只读)

在 Windows 上,如果按住了任意一个 Windows 键,返回 true。
在 Mac 上,如果按住了任意一个 Command 键,返回 true。

using UnityEngine;

public class Example : MonoBehaviour { // Prints Command/Windows key was pressed depending the // platform this script is being run. void OnGUI() { Event e = Event.current; if (e.command) { if (Application.platform == RuntimePlatform.OSXEditor) { Debug.Log("Command key was pressed"); } else if (Application.platform == RuntimePlatform.WindowsEditor) { Debug.Log("Windows Key was pressed!"); } } } }