Table of Contents

Enum TargetTreeMode

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

Controls which R-Tree(s) a trigger region evaluates against.

public enum TargetTreeMode : byte

Fields

Both = 1

Query both static and dynamic trees. Static results are cached and only re-queried on tree mutation.

DynamicOnly = 0

Query only the dynamic tree (default). Best for regions tracking moving entities.

StaticOnly = 2

Query only the static tree. Fully cached after first evaluation.