Enum SpatialMode
- Namespace
- Typhon.Schema.Definition
- Assembly
- Typhon.Schema.Definition.dll
Controls whether a spatial-indexed component uses a static or dynamic R-Tree. Static trees skip tick-fence updates entirely; dynamic trees use fat AABBs for movement hysteresis.
public enum SpatialMode : byte
Fields
Dynamic = 0Entities move — the R-Tree stores fat (margin-expanded) AABBs for movement hysteresis and is refreshed at the tick fence.
Static = 1Entities never move — the R-Tree skips tick-fence updates entirely.