Created
June 15, 2026 09:11
-
-
Save unitycoder/2799b5e1fc2a0cf62973ebafdd5fcd43 to your computer and use it in GitHub Desktop.
Editor Window Deselect textarea element on click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // if mouse click anywhere on window | |
| var theWholeWindowRect = new Rect(0, 0, position.width, position.height); | |
| if (GUI.Button(theWholeWindowRect, "", GUIStyle.none)) | |
| { | |
| GUI.FocusControl(null); | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment