diff options
author | David Runge <dave@sleepmap.de> | 2018-01-20 14:56:48 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2018-01-20 14:56:48 +0100 |
commit | c135735c9d2450e61fa7ba28c5b7fa9d16dd1ac4 (patch) | |
tree | d0f3bf1d5fdd3d04b05cd5af05354b2b923b018f /classes | |
parent | 3df30e2c28522ccfba29b1fc908b87d96b35e55f (diff) | |
download | zzz-c135735c9d2450e61fa7ba28c5b7fa9d16dd1ac4.tar.gz zzz-c135735c9d2450e61fa7ba28c5b7fa9d16dd1ac4.tar.bz2 zzz-c135735c9d2450e61fa7ba28c5b7fa9d16dd1ac4.tar.xz zzz-c135735c9d2450e61fa7ba28c5b7fa9d16dd1ac4.zip |
classes/ZZZ.sc: Updating standard width of \ZZZClock SynthDef to 0.5, so hardware will recognize it properly in higher speeds.
Diffstat (limited to 'classes')
-rw-r--r-- | classes/ZZZ.sc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/ZZZ.sc b/classes/ZZZ.sc index 7c9878c..7ee2ebf 100644 --- a/classes/ZZZ.sc +++ b/classes/ZZZ.sc @@ -20,7 +20,7 @@ ZZZ{ *initClass{ StartUp.add{ // adding SynthDef for clock - SynthDef(\ZZZClock, { |out = 0, freq = 2, iphase = 0, width = 0.001, mul= 1.0| + SynthDef(\ZZZClock, { |out = 0, freq = 2, iphase = 0, width = 0.5, mul= 1.0| Out.ar(out, LFPulse.ar(freq, iphase, width, mul)); }).add; // adding SynthDef for constant notes |