Enum AgentAvoidancePriority
Defines avoidance priority levels for AI agents. Higher values cause agents to avoid others more aggressively. Used to control how strongly an agent tries to avoid collisions with other agents in the navigation system.
public enum AgentAvoidancePriority : byte
Fields
Critical avoidance priority. Agent avoids others at all costs and rarely yields.
High avoidance priority. Agent actively avoids others and is less likely to yield.
Low avoidance priority. Agent yields to higher priority agents.
Medium avoidance priority. Default value for most agents.
Lowest priority. Agent avoids others the least and is most likely to yield.