ProtoFlux:Pack3: Difference between revisions

From Resonite Wiki
Created a page for the Pack 3 node.
 
m YoshBot moved page ProtoFlux:Pack 3 to ProtoFlux:Pack3: Automated: removing spaces from ProtoFlux namespace
 
(One intermediate revision by one other user not shown)
Line 15: Line 15:


The '''Pack 3''' node takes in 3 values and combines them into a new value of a similar type, returning a variant that has the combined separated values. (Example: <code>int</code> + <code>int</code> + <code>int</code> = <code>int3</code>)
The '''Pack 3''' node takes in 3 values and combines them into a new value of a similar type, returning a variant that has the combined separated values. (Example: <code>int</code> + <code>int</code> + <code>int</code> = <code>int3</code>)
This can also Pack or combine float3, which is its most common use in ProtoFlux.


== Inputs ==
== Inputs ==

Latest revision as of 00:29, 21 August 2025

Pack xyz
X
*
Y
Z
Packing

The Pack 3 node takes in 3 values and combines them into a new value of a similar type, returning a variant that has the combined separated values. (Example: int + int + int = int3)

This can also Pack or combine float3, which is its most common use in ProtoFlux.

Inputs

X (Pseudo-Generic)

The first value to pack.

Y (Pseudo-Generic)

The second value to pack.

Z (Pseudo-Generic)

The third value to pack.

Outputs

* (Pseudo-Generic)

The new combined value type with the packed in information.