Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close Submission failedFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close Your name Your email Suggestion* DescriptionThe EditorWindow which currently has keyboard focus. (Read Only)
focusedWindow
can be null if no window has focus.
Additional resources: mouseOverWindow, Focus.
using UnityEngine; using UnityEditor; using UnityEngine.UIElements; // Print the name of the focused window to a label. public class FocusedWindow : EditorWindow { [MenuItem("Examples/Focused Window")] public static void ShowExample() { FocusedWindow wnd = GetWindow<FocusedWindow>(); wnd.titleContent = new GUIContent("Focused Window Example"); } public void CreateGUI() { var label = new Label(); rootVisualElement.Add(label); EditorApplication.update += UpdateLabel; void UpdateLabel() { label.text = EditorWindow.focusedWindow != null ? EditorWindow.focusedWindow.ToString() : "No focused window"; } } }
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4