ecspresso
    Preparing search index...

    Interface SystemDefaults<Cfg>

    Defaults applied to every system created through a plugin installation or a system registration scope. Registration scopes snapshot these values; per-system builder calls override them.

    interface SystemDefaults<Cfg extends WorldConfig = EmptyConfig> {
        excludeScreens?: readonly (keyof Cfg["screens"] & string)[];
        inScreens?: readonly (keyof Cfg["screens"] & string)[];
        phase?: SystemPhase;
        priority?: number;
    }

    Type Parameters

    Index
    excludeScreens?: readonly (keyof Cfg["screens"] & string)[]
    inScreens?: readonly (keyof Cfg["screens"] & string)[]
    phase?: SystemPhase
    priority?: number