Call node method
exec_node_methodCall any Python method on a TouchDesigner node when standard tools fall short. Use for operations like cook, copy, or destroy.
Instructions
Escape hatch — invoke an arbitrary Python method on a node (operator). Prefer structured tools where one exists; use this for operations they don't cover (e.g. .cook(), .copy(), .destroy()).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Full path of the node to call the method on. | |
| method | Yes | Method name to call, e.g. 'cook', 'par', 'destroy', 'copy'. | |
| args | No | Positional arguments. | |
| kwargs | No | Keyword arguments. |