chuck icon indicating copy to clipboard operation
chuck copied to clipboard

LiSa/LiSa10 and panning.

Open ericheep opened this issue 7 years ago • 8 comments

The panning functions of the LiSa UGen effectively mutes the UGen. These same functions work with LiSa10.

SinOsc sin => LiSa mic => dac;

1::second => dur DURATION;
mic.duration(DURATION);

mic.record(1);
DURATION => now;
mic.record(0);

// both pan and voicePan results in silence
//mic.pan(1.0);
mic.voicePan(0, 0.0);

mic.play(1);
while (true){
    second => now;
}

Also, it'd be nice if when using LiSa (as opposed to LiSa10), that the expected values range from -1.0 to 1.0 instead of 0.0 to 1.0.

ericheep avatar Sep 20 '16 03:09 ericheep