Versions with this page:
Versions without this page:
鼠标位置。
在 EventType.MouseMove 和 EventType.MouseDrag 事件中使用。另请参阅:Event.delta。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void OnGUI() { Event e = Event.current; Debug.Log(e.mousePosition); } }