マウス位置
EventType.MouseMove と EventType.MouseDrag のイベントで使用されます。
関連項目: Event.delta
// Prints the current mouse position function OnGUI () { var e : Event = Event.current; Debug.Log(e.mousePosition); }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnGUI() { Event e = Event.current; Debug.Log(e.mousePosition); } }