ProtoFlux:Unpack 3

From Resonite Wiki
Revision as of 17:20, 27 June 2024 by AmasterAmaster (talk | contribs) (Created a page for the Unpack 3 node.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Unpack xyz
V
X
Y
Z
Packing

The Unpack 3 node takes in a value that contains data that can be split into 3 separate values of a similar type, returning the individual data types that made up this packed value. (Example: int3 = int + int + int)

Inputs

V (Pseudo-Generic)

The value we want to unpack.

Outputs

X (Pseudo-Generic)

Returns the first value from the provided packed value.

Y (Pseudo-Generic)

Returns the second value from the provided packed value.

Z (Pseudo-Generic)

Returns the third value from the provided packed value.