r.SkylightCapture.LODDistanceScale
r.SkylightCapture.LODDistanceScale
#Overview
name: r.SkylightCapture.LODDistanceScale
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
LODDistanceScale for the Sky Light Capture. Default is 1Negative values will be clamped to 1
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseDeviceProfiles.ini:809, section: [Android DeviceProfile]
- INI Section:
Android DeviceProfile
- Raw value:
2
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Renderer/Private/ReflectionEnvironmentCapture.cpp:68
Scope: file
Source code excerpt:
float GSkylightCaptureLODDistanceScale = 1.f;
static FAutoConsoleVariableRef CVarSkylightCaptureLODDistanceScale(
TEXT("r.SkylightCapture.LODDistanceScale"),
GSkylightCaptureLODDistanceScale,
TEXT("LODDistanceScale for the Sky Light Capture. Default is 1")
TEXT("Negative values will be clamped to 1"),
ECVF_Scalability);
/**