Navigation
API > API/Plugins > API/Plugins/StateTreeModule
Transitions behavior.
| Name | EStateTreeTransitionType |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/StateTree/Source/StateTreeModule/Public/StateTreeTypes.h |
| Include Path | #include "StateTreeTypes.h" |
Syntax
enum EStateTreeTransitionType
{
None,
Succeeded,
Failed,
GotoState,
NextState,
NextSelectableState,
NotSet,
}
Values
| Name | Remarks |
|---|---|
| None | No transition will take place. |
| Succeeded | Stop State Tree or sub-tree and mark execution succeeded. |
| Failed | Stop State Tree or sub-tree and mark execution failed. |
| GotoState | Transition to the specified state. |
| NextState | Transition to the next sibling state. |
| NextSelectableState | Transition to the next selectable sibling state |
| NotSet |