wp.Runtime.ToggleDrawStreamingPerfs
wp.Runtime.ToggleDrawStreamingPerfs
#Overview
name: wp.Runtime.ToggleDrawStreamingPerfs
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Toggles debug display of world partition streaming perfs.
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:92
Scope: file
Source code excerpt:
static int32 GDrawStreamingPerfs = 0;
static FAutoConsoleCommand CVarDrawStreamingPerfs(
TEXT("wp.Runtime.ToggleDrawStreamingPerfs"),
TEXT("Toggles debug display of world partition streaming perfs."),
FConsoleCommandDelegate::CreateLambda([] { GDrawStreamingPerfs = !GDrawStreamingPerfs; }));
static int32 GDrawLegends = 0;
static FAutoConsoleCommand CVarGDrawLegends(
TEXT("wp.Runtime.ToggleDrawLegends"),