Scheduler Stages
Scheduler Stages
qti-clockwork-scheduler executes systems in named stages.
Built-in Stages
Boot(sync)PreUpdate(sync)FixedUpdate(sync)Update(sync)LateUpdate(sync)RenderPrep(async allowed)Render(async allowed)PostRender(async allowed)Shutdown(async allowed)
Stage Rules
- Systems sorted by
order, tie-broken by insertion order. runIf(world)can skip system execution.- Async system execution in sync stage throws.
- Command buffer flush runs after stage systems.