Update node parameters
update_td_node_parametersSet one or more parameters of a TouchDesigner node to constant values. The update is atomic and strict: if any parameter name or value is invalid, no changes are applied and an error details which failed.
Instructions
Modify an existing node by setting one or more of its parameters to constant values. The update is strict (not best-effort): an unknown parameter name fails the whole call atomically without changing anything, and a bad value (wrong type or out of range) returns an error naming which parameters applied and which failed. On success returns the updated {node}. To inspect valid parameter names/current values first use get_td_node_parameters; to make a parameter move over time use animate_parameter instead of a static value.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Full path of the node whose parameters to update. | |
| parameters | Yes | Parameter overrides as key→value pairs, e.g. { period: 4, amplitude: 0.5 }. |