fx.Niagara.CompressScriptByteCode
fx.Niagara.CompressScriptByteCode
#Overview
name: fx.Niagara.CompressScriptByteCode
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Should we compress script bytecode to save memory. Will be uncompressed on demand.
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/NiagaraScript.cpp:87
Scope: file
Source code excerpt:
bool GNiagaraCompressScriptByteCode = false;
static FAutoConsoleVariableRef CVarNiagaraCompressScriptByteCode(
TEXT("fx.Niagara.CompressScriptByteCode"),
GNiagaraCompressScriptByteCode,
TEXT("Should we compress script bytecode to save memory. Will be uncompressed on demand."),
ECVF_Default
);
bool GNiagaraDelayScriptAsyncOptimization = true;