esluyter / super-bufrd

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

SuperPoll doesn't send values back to client #17

Closed esluyter closed 3 years ago

esluyter commented 4 years ago
(
OSCdef(\tr, { |msg| msg.postln }, '/tr');
{
  SuperPair(DC.ar(1000)).poll(trigid:1);
  DC.ar(0);
}.play
)

vs. expected behavior:

(
OSCdef(\tr, { |msg| msg.postln }, '/tr');
{
  DC.ar(1000).poll(trigid:1);
  DC.ar(0);
}.play
)
elgiano commented 4 years ago

I see, and I think we should change SuperPoll to use SendReply, so that it can send both components. We could send to /tr as well, I don't think we would break anything by sending more than one arg