fx.Niagara.DataChannels.FrameDataToCapture
fx.Niagara.DataChannels.FrameDataToCapture
#Overview
name: fx.Niagara.DataChannels.FrameDataToCapture
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
The number of frames the debugger will capture for write requests.
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/NiagaraDataChannel.cpp:31
Scope (from outer to inner):
file
namespace NDCCVars
Source code excerpt:
int32 FrameDataToCapture = 0;
static FAutoConsoleVariableRef CVarFrameDataToCapture(TEXT("fx.Niagara.DataChannels.FrameDataToCapture"), FrameDataToCapture, TEXT("The number of frames the debugger will capture for write requests."), ECVF_Default);
#if WITH_NIAGARA_DEBUGGER
FAutoConsoleCommand CmdDumpWriteLog(
TEXT("fx.Niagara.DataChannels.DumpWriteLog"),
TEXT("Dump all the currently stored writes to the log (see fx.Niagara.DataChannels.FrameDataToCapture on how many frames are captured)"),
FConsoleCommandDelegate::CreateStatic(FNiagaraDataChannelDebugUtilities::DumpAllWritesToLog)