glastonbridge / SuperCollider-Android

An Android port of SuperCollider
http://wiki.github.com/glastonbridge/SuperCollider-Android
GNU General Public License v3.0
122 stars 22 forks source link

Provide the right set of plugins to make default.scsyndef work! #2

Closed glastonbridge closed 14 years ago

glastonbridge commented 14 years ago

At the moment, I'm seeing a caught exception (hurrah!) that it can't find UGen "Control"

danstowell commented 14 years ago

Yep, Control is used for the external controls (aka arguments) such as freq, amp. The default synthdef is defined somewhere inside common/build/SCClassLibrary/Common/Collections/Event.sc and you can see exactly which ugens are used by running this in sc:

   s.boot;
   x = Synth(\default)
   x.trace

it looks like it uses:

glastonbridge commented 14 years ago

Added plugins and checked in.