Navigation
API > API/Plugins > API/Plugins/StateTreeModule
Status describing current run status of a State Tree.
| Name | EStateTreeRunStatus |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/StateTree/Source/StateTreeModule/Public/StateTreeExecutionTypes.h |
| Include Path | #include "StateTreeExecutionTypes.h" |
Syntax
enum EStateTreeRunStatus
{
Running,
Stopped,
Succeeded,
Failed,
Unset,
}
Values
| Name | Remarks |
|---|---|
| Running | Tree is still running. |
| Stopped | The State Tree was requested to stop without a particular success or failure state. |
| Succeeded | Tree execution has stopped on success. |
| Failed | Tree execution has stopped on failure. |
| Unset | Status not set. |