GameplayTags.DumpTagList
GameplayTags.DumpTagList
#Overview
name: GameplayTags.DumpTagList
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Writes out a csvs with all tags to Reports/TagList.csv, Reports/TagReferencesList.csv and Reports/TagSourcesList.csv
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Plugins/Editor/GameplayTagsEditor/Source/GameplayTagsEditor/Private/GameplayTagsEditorModule.cpp:989
Scope: file
Source code excerpt:
static FAutoConsoleCommand CVarDumpTagList(
TEXT("GameplayTags.DumpTagList"),
TEXT("Writes out a csvs with all tags to Reports/TagList.csv, ")
TEXT("Reports/TagReferencesList.csv and Reports/TagSourcesList.csv"),
FConsoleCommandDelegate::CreateStatic(FGameplayTagsEditorModule::DumpTagList),
ECVF_Cheat);
IMPLEMENT_MODULE(FGameplayTagsEditorModule, GameplayTagsEditor)