Vixen
02b45cc4
csharp
public sealed class BehaviorUpdateSystem

Calls 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)

Used by (1)

  • EngineLoopVixen.Engine