Enum World.ThreadModelType
- Namespace
- Jitter2
- Assembly
- Jitter2.dll
Controls how internal worker threads behave between calls to Step(float, bool).
public enum World.ThreadModelType
Fields
Persistent = 1Worker threads remain active between steps to reduce wake-up latency, at the cost of higher background CPU usage.
Regular = 0Worker threads may yield when the engine is idle. Lower background CPU usage.