Created
October 19, 2018 00:59
-
-
Save yratof/f4946852c06a4a0333dcbd0e1f2edb68 to your computer and use it in GitHub Desktop.
Worst fucking synth ever
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ( | |
| s.waitForBoot({ | |
| ( | |
| s.sync; | |
| ( | |
| SynthDef("shittySy",{ | |
| arg out=0; | |
| Out.ar(out, | |
| SinOsc.ar( AnalogIn.ar(4) * 100.midicps, 0, 0.1 * Decay.ar( DigitalIn.ar(0), 1) ); | |
| ) | |
| }).send(s); | |
| ); | |
| s.sync; | |
| Synth.new("shittySy", target: s).postln; | |
| ); | |
| }); | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment