Editor Apps
Editor Apps are apps that run in the editor. They generally have their own window. They're sometimes used to edit specific types of asset.
Editor Apps are apps that run in the editor. They generally have their own window. They're sometimes used to edit specific types of asset.
Examples of editor apps are the ShaderGraph, Material Editor, Model Editor.
Creating
To create an Editor App, you just need to add an [EditorApp] attribute to its main window.
[EditorApp( "Example App", "pregnant_woman", "Inspect Butts" )]
public class MyEditorApp : Window
{
public MyEditorApp()
{
WindowTitle = "Hello";
MinimumSize = new Vector2( 300, 500 );
}
}
The app will be available on the App sidebar and the Apps menu.

Referenced API
Canonical API pages mentioned in this guide.
A 2-dimensional vector. Typically represents a position, size, or direction in 2D space.
No summary available.
The created parent window for this dialog.
The Hammer app's window.
Sets `Editor.Widget.MinimumWidth` and `Editor.Widget.MinimumHeight` simultaneously.
No summary available.
No summary available.