Get node parameters
get_td_node_parametersRetrieve the current parameters, inputs, and outputs of a TouchDesigner node by its path. Optionally filter specific parameters or omit inputs/outputs to save context.
Instructions
Read-only: read the current parameters (and inputs/outputs) of one node. Returns {path, type, name, parameters, inputs, outputs}. Pass keys to project specific parameters or omit_io:true to drop the inputs/outputs lists. Use compare_td_nodes to diff two nodes' parameters at once.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Full path of the node to inspect. | |
| keys | No | Only return these parameter names (case-sensitive). Omit to return all parameters. | |
| omit_io | No | Drop the inputs/outputs lists from the result to save context. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| type | Yes | ||
| name | Yes | ||
| parameter_warnings | No | ||
| parameters | Yes | ||
| inputs | No | ||
| outputs | No | ||
| family | No | ||
| errors | No | ||
| flags | No | ||
| wires_in | No | ||
| nodeX | No | ||
| nodeY | No | ||
| comment | No | ||
| color | No | ||
| tags | No |