跳转到内容

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.

optional runAfter?: string[]

Defined in: ecs/system.ts:310

Member systems run after each of these names (may reference a set).


optional runBefore?: string[]

Defined in: ecs/system.ts:308

Member systems run before each of these names (may reference a set).


optional runIf?: RunCondition

Defined in: ecs/system.ts:306

Predicate checked per-frame; false skips every member.


systems: SystemDef[]

Defined in: ecs/system.ts:304

Systems contained in the set.