Navigation
API > API/Plugins > API/Plugins/NiagaraEditor
Defines information about the results of a Niagara script compile.
| Name | FNiagaraCompileResults |
| Type | struct |
| Header File | /Engine/Plugins/FX/Niagara/Source/NiagaraEditor/Public/INiagaraCompiler.h |
| Include Path | #include "INiagaraCompiler.h" |
Syntax
struct FNiagaraCompileResults
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| bComputeSucceeded | bool | Whether or not the script compiled successfully for GPU compute | INiagaraCompiler.h | |
| bVMSucceeded | bool | Whether or not the script compiled successfully for VectorVM | INiagaraCompiler.h | |
| CompileEvents | TArray< FNiagaraCompileEvent > | Tracking any compilation warnings or errors that occur. | INiagaraCompiler.h | |
| CompilerPreprocessTime | float | INiagaraCompiler.h | ||
| CompilerWallTime | float | INiagaraCompiler.h | ||
| CompilerWorkerTime | float | INiagaraCompiler.h | ||
| Data | TSharedPtr< FNiagaraVMExecutableData > | The actual final compiled data. | INiagaraCompiler.h | |
| DumpDebugInfoPath | FString | INiagaraCompiler.h | ||
| NumErrors | uint32 | INiagaraCompiler.h | ||
| NumWarnings | uint32 | INiagaraCompiler.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AppendCompileEvents
(
TArrayView< const FNiagaraCompileEvent > InCompileEvents |
INiagaraCompiler.h |
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static ENiagaraScriptCompileStatus CompileResultsToSummary
(
const FNiagaraCompileResults* CompileResults |
INiagaraCompiler.h |