Vector3
Builds a 3D vector from X, Y, Z components. Use it to construct a position, an axis, a scale factor, or any other three-component value.
Node
Interactive preview is available in the interactive reader.
Sockets
value (out)- Vector3 — [x, y, z] triple assembled from the three parameters.
Parameters
X- First component (default 0, step 0.1).
Y- Second component (default 0, step 0.1).
Z- Third component (default 0, step 0.1).
How It Works
The three parameters are copied into a [x, y, z] tuple on every evaluation. Vector3 is the canonical position type inside Node Sculptor — positions, axes, offsets, scales, pivots all use it.
If you want to build a Vector3 from three existing Float wires instead of constants, use the Construct Vector node (Vector & Transform category).