Enum PlanExecutionSettings.PlanExecutionMode
Modes for managing when actions are executed.
Namespace: Unity.AI.Planner
Syntax
public enum PlanExecutionMode
Fields
Name | Description | Value |
---|---|---|
ActImmediately | Execute the next action in the plan immediately. |
0 |
WaitForManualExecutionCall | Do not execute an action unless manually triggered. |
1 |
WaitForPlanCompletion | Execute an action only once the plan has reached a terminal state for each possible outcome. |
2 |
WaitForMaximumDecisionTolerance | Execute an action only once the value estimate has converged to a given tolerance. |
3 |
WaitForMinimumPlanSize | Execute an action only once the plan has grown to a minimum size. |
4 |
WaitForMinimumPlanningTime | Execute an action only once the planning process has run for a minimum amount of time. |
5 |