csharp
public sealed class BehaviorUpdateSystemCalls Update on every enabled, started behaviour.
No guide page documents this yet — the page shows what the code says about itself.
As a system
- Phase
- Update
Remarks
Declares no access, and so conflicts with every other system in its phase. That is correct rather than lazy: a behaviour is arbitrary user code and may touch anything, and the scheduler's only honest reading of that is "assume everything". A game that wants its behaviour work to overlap with a system writes an ISystem instead, which is the trade doc 04 states in as many words.
Methods (2)
public BehaviorUpdateSystem(BehaviorStore store)Calls Update on every enabled, started behaviour.
public override JobHandle Update(in SystemContext context, JobHandle dependency)Runs the system.
Used by (1)
- EngineLoopVixen.Engine