Update node parameters
update_td_node_parametersUpdate a TouchDesigner node's parameters to constant values, with atomic validation: unknown names or invalid values fail the entire operation, returning an error listing which parameters succeeded.
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 }. |