[ConfigWindowMinSize]

Attribute defines the minimum size of a configuration editor window for a ScriptableObject asset.

Parameters

Parameter
Type
Description

width

float

Minimum window width in pixels.

height

float

Minimum window height in pixels.

Examples

using RenownedGames.Apex;
using UnityEngine;

[ConfigWindow("Resizable Window")]
[ConfigWindowMinSize(400, 300)]
public class ResizableConfig : ScriptableObject
{
    // ...
}

Last updated