r.PSOPrecache.ProxyCreationDelayStrategy
r.PSOPrecache.ProxyCreationDelayStrategy
#Overview
name: r.PSOPrecache.ProxyCreationDelayStrategy
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Control the component proxy creation strategy when the requested PSOs for precaching are still compiling. Ignored if r.PSOPrecache.ProxyCreationWhenPSOReady = 0.\n 0: delay creation until PSOs are ready (default)\n 1: create a proxy using the default material until PSOs are ready. Currently implemented for static and skinned meshes - Niagara components will delay creation instead
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/PSOPrecache.cpp:43
Scope: file
Source code excerpt:
int32 GPSOProxyCreationDelayStrategy = 0;
static FAutoConsoleVariableRef CVarPSOProxyCreationDelayStrategy(
TEXT("r.PSOPrecache.ProxyCreationDelayStrategy"),
GPSOProxyCreationDelayStrategy,
TEXT("Control the component proxy creation strategy when the requested PSOs for precaching are still compiling. Ignored if r.PSOPrecache.ProxyCreationWhenPSOReady = 0.\n")
TEXT(" 0: delay creation until PSOs are ready (default)\n")
TEXT(" 1: create a proxy using the default material until PSOs are ready. Currently implemented for static and skinned meshes - Niagara components will delay creation instead"),
ECVF_ReadOnly
);