Navigation
API > API/Plugins > API/Plugins/StateTreeModule > API/Plugins/StateTreeModule/UStateTree
Determines how we match a state gameplay tag
| Name | EStateGameplayTagQueryMethod |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/StateTree/Source/StateTreeModule/Public/StateTree.h |
| Include Path | #include "StateTree.h" |
Syntax
enum EStateGameplayTagQueryMethod
{
Includes,
MatchesExact,
}
Values
| Name | Remarks |
|---|---|
| Includes | Foo matches both Foo and Foo.Bar. Foo.Bar does not match Foo. |
| MatchesExact | Foo only matches Foo. Foo does not match Foo.Bar. Foo.Bar does not match Foo. |