Navigation
API > API/Plugins > API/Plugins/StateTreeModule
References
| Module | StateTreeModule |
| Header | /Engine/Plugins/Runtime/StateTree/Source/StateTreeModule/Public/StateTreeTypes.h |
| Include | #include "StateTreeTypes.h" |
Syntax
enum EStateTreeStateSelectionBehavior
{
None,
UMETA =(DisplayName = "Try Enter"),
UMETA =(DisplayName = "Try Select Children In Order"),
UMETA =(DisplayName = "Try Follow Transitions"),
}
Values
| Name | Description |
|---|---|
| None | The State cannot be directly selected. |
| UMETA | When state is considered for selection, it is selected even if it has child states. |
| UMETA | When state is considered for selection, try to selects the first child state (in order they appear in the child list). |
| UMETA | When state is considered for selection, try to trigger the transitions instead. |