UnityGUI のインプットと処理するイベントの種類
Use this to tell which type of event has taken place in the GUI. Types of Events include mouse clicking, mouse dragging, button pressing, the mouse entering or exiting the window, and the scroll wheel as well as others mentioned below.
関連項目: Event.type, Event, GUI Scripting Guide.
//Attach this script to a GameObject //This script is a basic overview of some of the Event Types available. It outputs messages depending on the current Event Type.
using UnityEngine;
public class Example : MonoBehaviour { void OnGUI() { Event m_Event = Event.current;
if (m_Event.type == EventType.MouseDown) { Debug.Log("Mouse Down."); }
if (m_Event.type == EventType.MouseDrag) { Debug.Log("Mouse Dragged."); }
if (m_Event.type == EventType.MouseUp) { Debug.Log("Mouse Up."); } } }
MouseDown | マウスボタンが押されました。 |
MouseUp | (押していた) マウスボタンを離しました。 |
MouseMove | Mouse was moved (Editor views only). |
MouseDrag | マウスでドラッグしました。 |
KeyDown | キーボードのキーが押されました。 |
KeyUp | (押されていた) キーボードのキーを離しました。 |
ScrollWheel | マウスホイールを動かしました。 |
Repaint | イベントが再度描画されるときのイベント。毎フレーム呼び出されます。 |
Layout | レイアウトイベント |
DragUpdated | エディターのみ: ドラッグ&ドロップで操作が更新されたときのイベント |
DragPerform | エディターのみ: ドラッグ&ドロップの操作を実行したときのイベント |
DragExited | エディターのみ: ドラッグ&ドロップで操作が終了したときのイベント |
Ignore | Event を無効化 |
Used | すでに処理されたイベント |
ValidateCommand | コピー&ペーストなどの特別なコマンドを検証 |
ExecuteCommand | コピー&ペーストなどの特別なコマンドを実行 |
ContextClick | 右クリック (Mac 上では control +クリック) しました。 |
MouseEnterWindow | Mouse entered a window (Editor views only). |
MouseLeaveWindow | Mouse left a window (Editor views only). |