build_sop_chain
Create and connect a linear sequence of Houdini SOP nodes in one call, automatically wiring each node to the previous one for faster chain building.
Instructions
Build a sequential chain of SOP nodes wired together in a single call.
PREFERRED over individual create_node calls for linear SOP chains — builds and wires the entire chain in one round-trip, which is significantly faster.
Each step dict: {"type": str, "name": str (optional), "params": dict (optional)}. Nodes are created in order and each is automatically connected to the previous.
Example: steps=[ {"type": "box"}, {"type": "polybevel", "params": {"offset": 0.05}}, {"type": "scatter", "params": {"npts": 200}}, {"type": "copy_to_points", "name": "copy1"}, ]
Args: parent_path: Parent SOP network path. steps: List of step dicts defining the chain.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| steps | No | ||
| parent_path | No | /obj/geo1 |