fx.MaxNiagaraNeighborGridCells
fx.MaxNiagaraNeighborGridCells
#Overview
name: fx.MaxNiagaraNeighborGridCells
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/NiagaraDataInterfaceNeighborGrid3D.cpp:31
Scope: file
Source code excerpt:
static int32 GMaxNiagaraNeighborGridCells = (128*128*128*64);
static FAutoConsoleVariableRef CVarMaxNiagaraNeighborGridCells(
TEXT("fx.MaxNiagaraNeighborGridCells"),
GMaxNiagaraNeighborGridCells,
TEXT("The max number of supported grid cells in Niagara. Overflowing this threshold will cause the sim to warn and fail. \n"),
ECVF_Default
);
//////////////////////////////////////////////////////////////////////////