[ConfigWindow]

Attribute marks a ScriptableObject type to be opened in a dedicated configuration editor window.

Parameters

Parameter
Type
Description

title

string

Display name of the configuration window.

IconName

string

Optional icon name for the configuration window.

LeftPanelWidth

float

Preferred width of the left sections panel.

Dockable

bool

Open as dockable window.

Examples

using RenownedGames.Apex;
using UnityEngine;

[ConfigWindow("Apex Attributes Showcase", IconName = "d_UnityEditor.InspectorWindow", Dockable = false, LeftPanelWidth = 250f)]
public class ApexShowcaseWindow : ScriptableObject
{
    // Configuration content...
}

Last updated