wp.Runtime.ToggleDrawLegends
wp.Runtime.ToggleDrawLegends
#Overview
name: wp.Runtime.ToggleDrawLegends
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Toggles debug display of world partition legends.
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/Runtime/Engine/Private/WorldPartition/WorldPartitionSubsystem.cpp:98
Scope: file
Source code excerpt:
static int32 GDrawLegends = 0;
static FAutoConsoleCommand CVarGDrawLegends(
TEXT("wp.Runtime.ToggleDrawLegends"),
TEXT("Toggles debug display of world partition legends."),
FConsoleCommandDelegate::CreateLambda([] { GDrawLegends = !GDrawLegends; }));
static int32 GDrawRuntimeCellsDetails = 0;
static FAutoConsoleCommand CVarDrawRuntimeCellsDetails(
TEXT("wp.Runtime.ToggleDrawRuntimeCellsDetails"),