Update node parameters
update_td_node_parametersUpdate a node's parameters to constant values. Strict atomic validation: unknown parameter names cause failure, and bad values return error details listing which parameters succeeded 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 }. |