csharp
public sealed class CoroutineFixedStepSystemResumes coroutines waiting on FixedStep, once per step.
No guide page documents this yet — the page shows what the code says about itself.
As a system
- Phase
- FixedUpdate
Remarks
Counts the step itself rather than being told about it, because this system runs exactly once per fixed step by construction — that is what SystemPhase.FixedUpdate means — and a second thing that also had to be called once per step would be a second thing to forget.
Methods (2)
public CoroutineFixedStepSystem(CoroutineScheduler scheduler)Resumes coroutines waiting on FixedStep, once per step.
public override JobHandle Update(in SystemContext context, JobHandle dependency)Runs the system.
Used by (1)
- EngineLoopVixen.Engine