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