r.Cache.UpdateEveryFrame
r.Cache.UpdateEveryFrame
#Overview
name: r.Cache.UpdateEveryFrame
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Whether to update indirect lighting cache allocations every frame, even if they would have been cached. 0 is off (default), 1 is on
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/Renderer/Private/IndirectLightingCache.cpp:61
Scope: file
Source code excerpt:
int32 GCacheUpdateEveryFrame = 0;
static FAutoConsoleVariableRef CVarCacheUpdateEveryFrame(
TEXT("r.Cache.UpdateEveryFrame"),
GCacheUpdateEveryFrame,
TEXT("Whether to update indirect lighting cache allocations every frame, even if they would have been cached. 0 is off (default), 1 is on"),
ECVF_RenderThreadSafe
);
float GSingleSampleTransitionSpeed = 800;