Hilo3d API - v2.0.0-alpha.8
    Preparing search index...

    Interface StageSystemSetupContext

    Context available only while a System factory is being initialized.

    interface StageSystemSetupContext {
        stage: Stage;
        get<T>(service: StageSystemService<T>): T;
        getOptional<T>(service: StageSystemService<T>): T | undefined;
        provide<T>(service: StageSystemService<T>, value: T): void;
    }
    Index
    stage: Stage

    Stage that owns this System runtime.