言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Event.delta

public var delta: Vector2;

Description

最後のイベントに比べて、マウスの相対的な動きを返す

Used in EventType.MouseMove, EventType.MouseDrag, EventType.ScrollWheel events. See Also: Event.mousePosition.

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