SystemSetOptions
Defined in: ecs/system.ts:302
What a SystemSet is built out of. systems keeps the order it is
written in; runIf and the two edge lists apply to every member.
Properties
Section titled “Properties”runAfter?
Section titled “runAfter?”
optionalrunAfter?:string[]
Defined in: ecs/system.ts:310
Member systems run after each of these names (may reference a set).
runBefore?
Section titled “runBefore?”
optionalrunBefore?:string[]
Defined in: ecs/system.ts:308
Member systems run before each of these names (may reference a set).
runIf?
Section titled “runIf?”
optionalrunIf?:RunCondition
Defined in: ecs/system.ts:306
Predicate checked per-frame; false skips every member.
systems
Section titled “systems”systems:
SystemDef[]
Defined in: ecs/system.ts:304
Systems contained in the set.