Difference between revisions of "Shakercycle.ck"
From CSWiki
Line 1: | Line 1: | ||
+ | ShakerCycle.ck : effects abuse | ||
+ | author: Adam Tindale (--art) | ||
+ | |||
Shakers s => Chorus c1 => JCRev rev => Chorus c2 => Chorus c3 =>dac; | Shakers s => Chorus c1 => JCRev rev => Chorus c2 => Chorus c3 =>dac; | ||
Revision as of 02:31, 22 February 2006
ShakerCycle.ck : effects abuse author: Adam Tindale (--art)
Shakers s => Chorus c1 => JCRev rev => Chorus c2 => Chorus c3 =>dac; 0 => s.which; 1. => s.gain; 100. => float theTime; while (true) { 1.0 => s.noteOn; theTime::ms => now; 1.0 => s.noteOff; theTime::ms => now; ( s.which() + 1 ) % 20 => s.which; std.rand2f(20.,140.) => theTime; }