Enum SkipReason
Reason a system was skipped during tick execution.
public enum SkipReason : byte
Fields
DependencyFailed = 7System was skipped because a predecessor system failed with an exception.
EmptyEvents = 3System's event queue was empty (no events to consume).
EmptyInput = 2System's input source was empty (no entities to process).
Exception = 6System threw an exception during execution.
NotSkipped = 0System was not skipped — it executed normally.
Shed = 5System was shed by overload management (#201).
ShouldRunFalse = 1System's
ShouldRunpredicate returned false.Throttled = 4System was throttled by overload management (#201).