Update node parameters
update_td_node_parametersSet constant values for parameters on an existing TouchDesigner node. Atomic update: unknown parameters abort the entire call, and errors report which values applied or 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 }. |