Navigation
API > API/Plugins > API/Plugins/NiagaraEditor
Container for all stack issues across a Niagara System. Counter invariant: NumErrors + NumWarnings + NumInfos <= Issues.Num() (issues with Severity == None are not counted in any counter).
| Name | FNiagaraExt_StackIssues |
| Type | struct |
| Header File | /Engine/Plugins/FX/Niagara/Source/NiagaraEditor/Public/NiagaraExternalSystemEditorUtilities.h |
| Include Path | #include "NiagaraExternalSystemEditorUtilities.h" |
Syntax
USTRUCT (BlueprintInternalUseOnly)
struct FNiagaraExt_StackIssues
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Issues | TArray< FNiagaraExt_StackIssue > | All stack issues across the system (both dismissed and undismissed). | NiagaraExternalSystemEditorUtilities.h |
|
| NumErrors | int32 | Count of issues with Severity == Error. | NiagaraExternalSystemEditorUtilities.h |
|
| NumInfos | int32 | Count of issues with Severity == Info. | NiagaraExternalSystemEditorUtilities.h |
|
| NumWarnings | int32 | Count of issues with Severity == Warning. | NiagaraExternalSystemEditorUtilities.h |
|