Created
October 22, 2017 15:01
-
-
Save colinbdclark/483e5f1befd882b29869e39bc973cfd4 to your computer and use it in GitHub Desktop.
Multichannel chord (for testing)
This file contains 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
flock.synth({ | |
synthDef: [ | |
{ | |
ugen: "flock.ugen.out", | |
bus: 4, | |
expand: 1, | |
sources: [ | |
{ | |
ugen: "flock.ugen.sinOsc", | |
freq: 60, | |
mul: 0.01 | |
} | |
] | |
}, | |
{ | |
ugen: "flock.ugen.out", | |
bus: 5, | |
expand: 1, | |
sources: [ | |
{ | |
ugen: "flock.ugen.sinOsc", | |
freq: 90, | |
mul: 0.01 | |
} | |
] | |
}, | |
{ | |
ugen: "flock.ugen.out", | |
bus: 6, | |
expand: 1, | |
sources: [ | |
{ | |
ugen: "flock.ugen.sinOsc", | |
freq: 120, | |
mul: 0.01 | |
} | |
] | |
}, | |
{ | |
ugen: "flock.ugen.out", | |
bus: 7, | |
expand: 1, | |
sources: [ | |
{ | |
ugen: "flock.ugen.sinOsc", | |
freq: 240, | |
mul: 0.01 | |
} | |
] | |
} | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment