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