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