wp.Runtime.ForceRuntimeSpatialHashZCulling
wp.Runtime.ForceRuntimeSpatialHashZCulling
#Overview
name: wp.Runtime.ForceRuntimeSpatialHashZCulling
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Used to force the behavior of the runtime hash cells Z culling. Set to 0 to force off, to 1 to force on and any other value to respect the runtime hash setting.
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/WorldPartitionRuntimeSpatialHash.cpp:72
Scope: file
Source code excerpt:
static int32 GForceRuntimeSpatialHashZCulling = -1;
static FAutoConsoleVariableRef CVarForceRuntimeSpatialHashZCulling(
TEXT("wp.Runtime.ForceRuntimeSpatialHashZCulling"),
GForceRuntimeSpatialHashZCulling,
TEXT("Used to force the behavior of the runtime hash cells Z culling. Set to 0 to force off, to 1 to force on and any other value to respect the runtime hash setting."));
static bool GetEffectiveEnableZCulling(bool bEnableZCulling)
{
switch (GForceRuntimeSpatialHashZCulling)