more wikis
 

Buzz

From Scratchpad

Heart Beat Scripting Language at Wikia


method buzz(float f, dur t) executes the following code in ChucK:

   SawOsc s => dac;
   f => s.freq;
   t => now;
   s =< dac;

[edit] Defaults

   65. => f;
   150::ms => t;

[edit] Example

   //<3 Beat
   
   <body3
       <buzz3
           65. => f;
           150::ms => t;
       </3
       ^buzz;
   </3