DumpLevelCollections
DumpLevelCollections
#Overview
name: DumpLevelCollections
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Dump level collections in the current world.
It is referenced in 2
C++ source files.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/World.cpp:9462
Scope: file
Source code excerpt:
static FAutoConsoleCommandWithWorld DumpLevelCollectionsCmd(
TEXT("DumpLevelCollections"),
TEXT("Dump level collections in the current world."),
FConsoleCommandWithWorldDelegate::CreateStatic(DumpLevelCollections)
);
#if WITH_EDITOR
FAsyncPreRegisterDDCRequest::~FAsyncPreRegisterDDCRequest()
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/World.cpp:9439
Scope (from outer to inner):
file
function static void DumpLevelCollections
Source code excerpt:
);
static void DumpLevelCollections(UWorld* InWorld)
{
if (!InWorld)
{
return;
}