esluyter / super-bufrd

UGens for accessing long buffers with subsample accuracy
GNU General Public License v3.0
26 stars 3 forks source link

Fix synth control syntax #11

Closed esluyter closed 4 years ago

esluyter commented 4 years ago

It is now necessary to do something like this:

(
x = {
  var trig = \trig.tr(0), rate = \rate.kr(1), start = SuperPair(*\start.kr(0.asPair)), end = SuperPair(*\end.kr(48000.asPair)), reset = SuperPair(*\reset.kr(0.asPair)), loop = \loop.kr(0);
  var phs = SuperPhasor.arDetails(trig, rate, start, end, reset, loop);
  phs[0].poll;
  phs[1].poll;
  DC.ar(0);
}.play
)

x.set(\end, 1000.asPair, \loop, 1)