ark_d.amorphic/lib/bufPlayer.scd

8 lines
134 B
Plaintext
Raw Normal View History

2020-04-08 15:04:49 +02:00
(
SynthDef(\bufPlayer, {|out = 0, bufnum = 0 |
Out.ar(out,
PlayBuf.ar(1, bufnum, BufRateScale.kr(bufnum), loop: 1.0)
)
}).add;
);