-
Notifications
You must be signed in to change notification settings - Fork 37
Unit Reference MathParamNode
S2NX7 edited this page Sep 30, 2025
·
8 revisions
The Math Op node performs arithmetic operations on multiple inputs.
It can operate on numeric inputs (float) or non-numeric objects using operator utilities.
The operation type determines how the inputs are combined: add, subtract, multiply, or divide.
Properties
-
OperationType : The arithmetic operation to perform (
Add
,Subtract
,Multiply
,Divide
). - nonNumeric : Determines whether the node should handle non-numeric inputs using operator utilities.
- argumentCount : amount of inputs to use.
Input Ports
- arguments : The inputs to the node. The number of inputs is defined by the node’s argumentCount property.
Output Ports
-
output : The result of the arithmetic operation, either as a
float
orobject
depending on nonNumeric.