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

Event.delta

建议修改

成功!

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

关闭

提交失败

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

关闭

取消

public Vector2 delta;

描述

与上次事件相比,鼠标的相对移动量。

using UnityEngine;

public class Example : MonoBehaviour { // Move the scroll wheel to determine // the X & Y scrolling amount. void OnGUI() { Event e = Event.current; if (e.isMouse) { Debug.Log(e.delta); } } }