Multiply Variadic
What It Does
Multiplies two or more numbers together, calculating the product of all connected inputs. Unlike the basic Multiply node which has fixed inputs, this node can accept any number of values to multiply.
Inputs
inputs
The list of numbers to multiply together
List
No
Outputs
value
The product of all input values
Number

How to Use It
Drag the Multiply (Variadic) node into your graph.
Connect any number of numeric values to the "inputs" handle.
Each connected value will automatically be added to the inputs list.
Run the graph—the output will be the product of all connected values.
For example, with inputs [2, 3, 4], the output will be 24.

Tips
You can keep connecting more inputs as needed—there's no limit.
If no inputs are connected, the output will be 1 (the multiplicative identity).
If any input is 0, the output will be 0 regardless of other values.
See Also
Multiply: The standard multiplication node with two fixed inputs.
Add Variadic: For adding multiple values together.
Divide Variadic: For dividing with multiple divisors.
Use Cases
Scaling: Apply multiple scaling factors to a base value.
Compound Effects: Calculate the result of multiple percentage modifiers.
Dimensional Calculations: Multiply length, width, and height for volume calculations.
Probability: Calculate the combined probability of independent events.
Last updated