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

Event.button

建议的更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有建议,但我们会认真阅读用户建议的每项更改,并在合适的地方进行更新。

关闭

提交失败

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

关闭

取消

public int button;

描述

按下哪个鼠标按钮。

0 表示鼠标左键,1 表示右键,2 表示鼠标中键。在 EventType.MouseDownEventType.MouseUp 事件中使用。

using UnityEngine;

public class Example : MonoBehaviour { // Detect which mouse button is currently pressed // and print it. void OnGUI() { Event e = Event.current; if (e.button == 0 && e.isMouse) { Debug.Log("Left Click"); } else if (e.button == 1) { Debug.Log("Right Click"); } else if (e.button == 2) { Debug.Log("Middle Click"); } else if (e.button > 2) { Debug.Log("Another button in the mouse clicked"); } } }