-
Notifications
You must be signed in to change notification settings - Fork 37
Editor Window View
The Editor Window View allows you to build Unity Editor windows using Visual Scripting graphs.
- Create custom Unity editor windows visually.
- Add UI elements such as buttons, labels, fields, and containers.
- Bind logic to UI events directly in your graph.
- Reuse graphs across multiple editor windows.
-
Open a new Editor Window View via:
Window > Community Addons > New Editor Window View -
Create an Editor Window Asset from the Project tab:
Right Click > Create > Visual Scripting > Community > Editor -
Create window variables to store data.
After creation, they can be found in:
Community > Editor > "Your Window Name"inside the Fuzzy Finder. -
Access window events in:
Events > Community > Editor > Windowwithin the Fuzzy Finder. -
Design your UI using available nodes such as
GUILayoutfor basic controls.- For most cases, you’ll also want to add
GUIContentto the Type Options.
- For most cases, you’ll also want to add
-
In the Editor Window View, choose your created asset in the Reference Picker at the top.
Your graph now becomes a fully functional editor window that updates in real time.




