r.Emitter.FastPoolEnable
r.Emitter.FastPoolEnable
#Overview
name: r.Emitter.FastPoolEnable
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Should we use fast pools for emitters.\n 0: Don\'t pool anything\n 1: Pool the emitters bro (default)\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/Source/Runtime/Engine/Private/Particles/ParticleEmitterInstances.cpp:160
Scope: file
Source code excerpt:
static int32 GEnableFastPools = 0;
static FAutoConsoleVariableRef CVarEnableFastPools(
TEXT("r.Emitter.FastPoolEnable"),
GEnableFastPools,
TEXT("Should we use fast pools for emitters.\n")
TEXT(" 0: Don't pool anything\n")
TEXT(" 1: Pool the emitters bro (default)\n"),
ECVF_Default
);