Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


FocusWindowIfItsOpen

Focuses the first found EditorWindow of specified type if it is open.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Method
  • Namespace: UnityEditor
  • Assembly: UnityEditor

FocusWindowIfItsOpen(Type)

Focuses the first found EditorWindow of specified type if it is open.
public static void FocusWindowIfItsOpen(Type t)

Parameters

Remarks

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

FocusWindowIfItsOpen<T>()

Focuses the first found EditorWindow of type T if it is open.
public static void FocusWindowIfItsOpen<T>() where T : EditorWindow

Remarks

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