6 Jul
2016
6 Jul
'16
12:42 p.m.
(Michael wrote)
The ChucK source is here
https://github.com/ccrma/chuck
As far as documentation goes, there's not really much to Chubgraphs and Chugens, just chuck inlet to outlet with something in between or override fun float tick(float in), respectively.
michael
Yep that’s basically it. Also remember that these are classes you extend, so you can add your own member functions and variables to them. Things like .freq or .noteOn for instrument-like functions, or .mix for effects, etc. also you can spork in internal function to run continuously to do modulations or other updating. Anything you’d do with a ChucK class!! PRC