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

Event.alt

建议更改

成功!

感谢你帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交,但是我们确实会阅读用户提出的每项建议更改,并将适时进行更新。

关闭

提交失败

出于某些原因无法提交你建议的更改。请在几分钟后<a>重试</a>。感谢你花时间帮助我们提高 Unity 文档的质量。

关闭

取消

public bool alt;

描述

是否按住 Alt/Option 键?(只读)

在 Windows 系统上,当任何 Alt 键被按住时,它将返回 true。
在 Mac 系统上,当任何 Option 键被按住时,它将返回 true。

using UnityEngine;

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