ProtoFlux:EnumToNumber: Difference between revisions
See Enums for a more in depth explaination on what Enums are. This node can be useful for keeping enums as numbers, in cases like Cloud Variables that can't store Enums.
More actions
m YoshBot moved page ProtoFlux:Enum To Number to ProtoFlux:EnumToNumber: Automated: removing spaces from ProtoFlux namespace |
Manual Sync from my own PC - wiki-bot(at)stefanocoding.me - https://github.com/Xeravax/mediawiki-simple-sync |
||
| Line 1: | Line 1: | ||
{{SHORTDESC:See Enums for a more in depth explaination on what Enums are. This node can be useful for keeping enums as numbers, in cases like Cloud Variables that can't store Enums.}} | |||
{{#Invoke:ProtoFlux|GenerateUI | {{#Invoke:ProtoFlux|GenerateUI | ||
|Name=EnumToNumber | |Name=EnumToNumber | ||
Latest revision as of 17:04, 20 February 2026
EnumToNumber
Enums
See Enums for a more in depth explaination on what Enums are. This node can be useful for keeping enums as numbers, in cases like Cloud Variables that can't store Enums.
For what to input for variants other than EnumToInt, please see Complex Types in Components
This node has the following variants, with their respective outputs:
| Variant | Node Type | Output |
|---|---|---|
| Enum To Number (Byte) | EnumToByte |
provided Value (Enum) as a Byte |
| Enum To Number (Int) | EnumToInt |
provided Value (Enum) as an Int |
| Enum To Number (Long) | EnumToLong |
provided Value (Enum) as a Long |
| Enum To Number (Sbyte) | EnumToSbyte |
provided Value (Enum) as a Sbyte |
| Enum To Number (Short) | EnumToShort |
provided Value (Enum) as a Short |
| Enum To Number (Uint) | EnumToUint |
provided Value (Enum) as an Uint |
| Enum To Number (Ulong) | EnumToUlong |
provided Value (Enum) as an Ulong |
| Enum To Number (Ushort) | EnumToUshort |
provided Value (Enum) as a Ushort |
Inputs
Value (Enum Generic)
The Enum to convert to a whole number with * (Pseudo-generic (Whole Number))'s type according to Enums Page;
Outputs
* (Variant)
The Value (Enum Generic)'s Whole Number equivalent.