fx.LoadAllNiagaraSystemsInFolder
fx.LoadAllNiagaraSystemsInFolder
#Overview
name: fx.LoadAllNiagaraSystemsInFolder
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Loads all niagara systems in the supplied directory and sub-directories.
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/NiagaraEditor/Private/NiagaraEditorModule.cpp:1494
Scope (from outer to inner):
file
function void FNiagaraEditorModule::StartupModule
Source code excerpt:
LoadAllSystemsInFolderCommand = IConsoleManager::Get().RegisterConsoleCommand(
TEXT("fx.LoadAllNiagaraSystemsInFolder"),
TEXT("Loads all niagara systems in the supplied directory and sub-directories."),
FConsoleCommandWithArgsDelegate::CreateStatic(&LoadAllSystemsInFolder));
DumpEmitterDependenciesCommand = IConsoleManager::Get().RegisterConsoleCommand(
TEXT("fx.DumpEmitterDepencenciesInFolder"),
TEXT("Dumps emitter dependencies for all systems in the supplied folder and sub-folders."),
FConsoleCommandWithArgsDelegate::CreateStatic(&DumpEmitterDependenciesInFolder));
FNiagaraMessageManager* MessageManager = FNiagaraMessageManager::Get();