Navigation
API > API/Plugins > API/Plugins/GameplayAbilities > API/Plugins/GameplayAbilities/FGameplayTagCountContainer
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void UpdateTagCount
(
const FGameplayTagContainer& Container, |
Update the specified container of tags by the specified delta, potentially causing an additional or removal from the explicit tag list | GameplayEffectTypes.h | |
bool UpdateTagCount
(
const FGameplayTag& Tag, |
Update the specified tag by the specified delta, potentially causing an additional or removal from the explicit tag list | GameplayEffectTypes.h |
UpdateTagCount(const FGameplayTagContainer &, int32)
Description
Update the specified container of tags by the specified delta, potentially causing an additional or removal from the explicit tag list
| Name | UpdateTagCount |
| Type | function |
| Header File | /Engine/Plugins/Runtime/GameplayAbilities/Source/GameplayAbilities/Public/GameplayEffectTypes.h |
| Include Path | #include "GameplayEffectTypes.h" |
void UpdateTagCount
(
const FGameplayTagContainer & Container,
int32 CountDelta
)
Parameters
| Name | Remarks |
|---|---|
| Container | Container of tags to update |
| CountDelta | Delta of the tag count to apply |
UpdateTagCount(const FGameplayTag &, int32, EGameplayTagReplicationState)
Description
Update the specified tag by the specified delta, potentially causing an additional or removal from the explicit tag list
| Name | UpdateTagCount |
| Type | function |
| Header File | /Engine/Plugins/Runtime/GameplayAbilities/Source/GameplayAbilities/Public/GameplayEffectTypes.h |
| Include Path | #include "GameplayEffectTypes.h" |
bool UpdateTagCount
(
const FGameplayTag & Tag,
int32 CountDelta,
EGameplayTagReplicationState TagRepState
)
True if tag was either added or removed. (E.g., we had the tag and now dont. or didnt have the tag and now we do. We didn't just change the count (1 count -> 2 count would return false).
Parameters
| Name | Remarks |
|---|---|
| Tag | Tag to update |
| CountDelta | Delta of the tag count to apply |