Navigation
API > API/Plugins > API/Plugins/StateTreeModule
Defines how to assign the result of a condition to evaluate.
| Name | EStateTreeConditionEvaluationMode |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/StateTree/Source/StateTreeModule/Public/StateTreeExecutionTypes.h |
| Include Path | #include "StateTreeExecutionTypes.h" |
Syntax
enum EStateTreeConditionEvaluationMode
{
Evaluated,
ForcedTrue,
ForcedFalse,
}
Values
| Name | Remarks |
|---|---|
| Evaluated | Condition is evaluated to set the result. This is the normal behavior. |
| ForcedTrue | Do not evaluate the condition and force result to 'true'. |
| ForcedFalse | Do not evaluate the condition and force result to 'false'. |