Skip to content

v0.2.37 [EXPERIMENTAL]

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 17 Jan 00:10
· 22 commits to main since this release

These plugins are only compatible with the 2021.30000+ builds of TouchDesigner.

This is the second release with the Python interface. It's possible to set global variables via Python and receive them in callbacks associated with a ChucK Listener CHOP. Check out the Python-API branch for more information.

All Python interface functions have dropped global from their names where possible. For example
op('chuckaudio1').set_global_float('freq', 400) is now op('chuckaudio1').set_float('freq', 400)
Similarly for callbacks, getGlobalFloat(name, val) is now getFloat(name, val).