fx.MaxNiagaraRasterizationGridCells
fx.MaxNiagaraRasterizationGridCells
#Overview
name: fx.MaxNiagaraRasterizationGridCells
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
The max number of supported grid cells in Niagara. Overflowing this threshold will cause the sim to warn and fail. \n
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/NiagaraDataInterfaceRasterizationGrid3D.cpp:55
Scope (from outer to inner):
file
namespace NDIRasterizationGrid3DLocal
Source code excerpt:
static int32 GMaxNiagaraRasterizationGridCells = (1024 * 1024 * 1024);
static FAutoConsoleVariableRef CVarMaxNiagaraRasterizationGridCells(
TEXT("fx.MaxNiagaraRasterizationGridCells"),
GMaxNiagaraRasterizationGridCells,
TEXT("The max number of supported grid cells in Niagara. Overflowing this threshold will cause the sim to warn and fail. \n"),
ECVF_Default
);
}