FGameplayTagContainer::RemoveTagByExplicitName

If a Tag with the specified tag name explicitly exists, it will remove that tag and return true.

Windows
MacOS
Linux

References

Module

GameplayTags

Header

/Engine/Source/Runtime/GameplayTags/Classes/GameplayTagContainer.h

Include

#include "GameplayTagContainer.h"

Source

/Engine/Source/Runtime/GameplayTags/Private/GameplayTagContainer.cpp

Syntax

bool RemoveTagByExplicitName
(
    const FName & TagName
)

Remarks

If a Tag with the specified tag name explicitly exists, it will remove that tag and return true. Otherwise, it returns false. It does NOT check the TagName for validity (i.e. the tag could be obsolete and so not exist in the table). It also does NOT check parents (because it cannot do so for a tag that isn't in the table).

This function should ONLY ever be used by GameplayTagsManager when redirecting tags. Do NOT make this function public!

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss