unreal.NiagaraExt_StackIssues

class unreal.NiagaraExt_StackIssues

Bases: StructBase

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).

C++ Source:

  • Plugin: Niagara

  • Module: NiagaraEditor

  • File: NiagaraExternalSystemEditorUtilities.h

Editor Properties: (see get_editor_property/set_editor_property)

  • issues (Array[NiagaraExt_StackIssue]): [Read-Write] All stack issues across the system (both dismissed and undismissed).

  • num_errors (int32): [Read-Write] Count of issues with Severity == Error.

  • num_infos (int32): [Read-Write] Count of issues with Severity == Info.

  • num_warnings (int32): [Read-Write] Count of issues with Severity == Warning.