Navigation
API > API/Plugins > API/Plugins/Niagara
Defines different modes for selecting the output numeric type of a function or operation based on the types of the inputs.
| Name | ENiagaraNumericOutputTypeSelectionMode |
| Type | enum |
| Header File | /Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraTypes.h |
| Include Path | #include "NiagaraTypes.h" |
Syntax
enum ENiagaraNumericOutputTypeSelectionMode
{
None,
Largest,
Smallest,
Scalar,
Custom,
}
Values
| Name | Remarks |
|---|---|
| None | Output type selection not supported. |
| Largest | Select the largest of the numeric inputs. |
| Smallest | Select the smallest of the numeric inputs. |
| Scalar | Selects the base scalar type for this numeric inputs. |
| Custom | Selects the type based on custom logic from the node. |