NovaECS - v1.0.11
    Preparing search index...

    Interface SystemConfig

    System configuration 系统配置

    interface SystemConfig {
        after: string[];
        before: string[];
        flushPolicy?: "afterEach" | "afterStage";
        fn: (ctx: SystemContext) => void;
        name: string;
        runIf?: (world: World) => boolean;
        sets?: string[];
        stage: SystemStage;
    }
    Index

    Properties

    after: string[]
    before: string[]
    flushPolicy?: "afterEach" | "afterStage"
    fn: (ctx: SystemContext) => void
    name: string
    runIf?: (world: World) => boolean
    sets?: string[]