Difference between revisions of "Shakercycle.ck"
From CSWiki
(2 intermediate revisions by the same user not shown) | |||
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; | ||
Line 5: | Line 8: | ||
100. => float theTime; | 100. => float theTime; | ||
− | while (true){ | + | while (true) |
+ | { | ||
1.0 => s.noteOn; | 1.0 => s.noteOn; | ||
theTime::ms => now; | theTime::ms => now; | ||
Line 11: | Line 15: | ||
1.0 => s.noteOff; | 1.0 => s.noteOff; | ||
theTime::ms => now; | theTime::ms => now; | ||
− | |||
( s.which() + 1 ) % 20 => s.which; | ( s.which() + 1 ) % 20 => s.which; | ||
std.rand2f(20.,140.) => theTime; | std.rand2f(20.,140.) => theTime; | ||
} | } |
Latest 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; }