fx.NiagaraDataBufferShrinkFactor
fx.NiagaraDataBufferShrinkFactor
#Overview
name: fx.NiagaraDataBufferShrinkFactor
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Niagara data buffer size threshold for shrinking. (Default=3) \nThe buffer will be reallocated when the used size becomes 1/F of the allocated size.
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/Plugins/FX/Niagara/Source/Niagara/Private/NiagaraDataSet.cpp:58
Scope: file
Source code excerpt:
static int32 GNiagaraDataBufferShrinkFactor = 3;
static FAutoConsoleVariableRef CVarNiagaraRenderBufferShrinkFactor(
TEXT("fx.NiagaraDataBufferShrinkFactor"),
GNiagaraDataBufferShrinkFactor,
TEXT("Niagara data buffer size threshold for shrinking. (Default=3) \n")
TEXT("The buffer will be reallocated when the used size becomes 1/F of the allocated size."),
ECVF_Default
);