包含此页的版本:
不含此页的版本:
与上次事件相比该鼠标的相对移动。
在 EventType.MouseMove、EventType.MouseDrag、EventType.ScrollWheel 事件中使用。另请参阅:Event.mousePosition。
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); } } }