This version of Unity is unsupported.

EditorWindow.FocusWindowIfItsOpen

Declaration

public static void FocusWindowIfItsOpen(Type t);

Parameters

windowType The type of the window. Must derive from EditorWindow.

Description

Focuses the first found EditorWindow of specified type if it is open.

If there is no open window of such type, nothing happens.


Declaration

public static void FocusWindowIfItsOpen();

Parameters

T The type of the window. Must derive from EditorWindow.

Description

Focuses the first found EditorWindow of type T if it is open.

If there is no open window of such type, nothing happens.