Version: 2018.2
public static EditorWindow mouseOverWindow ;

説明

現在マウスのカーソルの下の EditorWindow (Read Only)

mouseOverWindow はカーソルの下にウィンドウがない場合、null にすることができます。

See Also: focusedWindow.


Move the mouse over other Unity windows to automatically focus them.

// mouseOverWindow example
//
// The window appears in front of the editor.  When you move
// the cursor over a Unity object the type of it will be
// shown in this new window.

using UnityEngine; using UnityEditor;

public class MouseOverWindowExample : EditorWindow { string mouseOver = "Nothing...";

[MenuItem("Examples/mouseOver")] static void Init() { GetWindow<MouseOverWindowExample>("mouseOver"); }

void OnGUI() { GUILayout.Label("Mouse over:\n" + mouseOver); if (GUILayout.Button("Close")) { this.Close(); }

mouseOver = EditorWindow.mouseOverWindow ? EditorWindow.mouseOverWindow.ToString() : "Nothing..."; }

void OnInspectorUpdate() { if (EditorWindow.mouseOverWindow) { EditorWindow.mouseOverWindow.Focus(); }

this.Repaint(); } }