Enum TargetTreeMode
Controls which R-Tree(s) a trigger region evaluates against.
public enum TargetTreeMode : byte
Fields
Both = 1Query both static and dynamic trees. Static results are cached and only re-queried on tree mutation.
DynamicOnly = 0Query only the dynamic tree (default). Best for regions tracking moving entities.
StaticOnly = 2Query only the static tree. Fully cached after first evaluation.