DUMPFIBINDEXCACHE
DUMPFIBINDEXCACHE
#Overview
name: DUMPFIBINDEXCACHE
This variable is created as a Console Variable (cvar).
- type:
Exec
- help:
Sorry: Exec commands have no help
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/Source/Editor/Kismet/Private/FindInBlueprintManager.cpp:3871
Scope (from outer to inner):
file
class class FFiBDumpIndexCacheToFileExecHelper : public FSelfRegisteringExec
function virtual bool Exec_Editor
Source code excerpt:
virtual bool Exec_Editor(class UWorld* InWorld, const TCHAR* Cmd, FOutputDevice& Ar)
{
if (FParse::Command(&Cmd, TEXT("DUMPFIBINDEXCACHE")))
{
FString FileLocation = FPaths::ConvertRelativePathToFull(FPaths::ProjectIntermediateDir() + TEXT("BlueprintSearchTools"));
FString FullPath = FString::Printf(TEXT("%s/FullBlueprintIndexCacheDump.csv"), *FileLocation);
FArchive* DumpFile = IFileManager::Get().CreateFileWriter(*FullPath);
if (DumpFile)