Enum SolveMode
- Namespace
- Jitter2
- Assembly
- Jitter2.dll
Controls which solver strategy is used during Step(float, bool).
public enum SolveMode
Fields
Deterministic = 1Island-based deterministic solver. Each simulation island is solved sequentially as an independent task. Islands are distributed across threads, so multithreading is still used. This mode can be significantly slower than Regular.
Regular = 0Standard parallel solver. Contacts and constraints are distributed across threads in fixed-size batches. An incremental cache-friendly reorder pass keeps related contacts adjacent in memory. Fast, but non-deterministic.