dathinaios / CuePlayer

A tool for composing and performing real-time and mixed electronic works using SuperCollider.
28 stars 5 forks source link

server's volume-fader #15

Closed sarcman closed 1 year ago

sarcman commented 2 years ago

On CuePlayer-GUI, the server's volume-fader does not respond to s.volume

dathinaios commented 1 year ago

This would have to be set in the CuePlayer GUI and not directly on the server. I have added a method setServerVolume and it will be available in the next update. Usage:

(
c = CuePlayer.new; 
c.put(1, { "one".postln }); 
c.put(2, { "two".postln; ().play; }); 
c.put(3, { "three".postln }); 
c.gui;
);
c.guiInstance.setServerVolume(0.5);