|
|
Re: n_mapn out of range: msg#00227
audio.supercollider.devel
|
Subject: |
Re: n_mapn out of range |
On Aug 25, 2004, at 4:25 AM, Julian Rohrhuber wrote:
using mapn with a named control, it might cause accidental overriding
of other controls:
a = { arg freq=#[200, 300, 400, 500], amp=0.1; Formant.ar(freq, 1020,
100).sum * amp }.play;
b = { Out.kr(72, LFNoise1.kr(1 ! 4) * 500 + 1700) }.play;
s.sendMsg("/n_mapn", a.nodeID, "freq", 72, 4); // fine
s.sendMsg("/n_mapn", a.nodeID, "freq", 72, 5); // not fine
maybe the server could catch that?
That is not an error. That was the original intention - to be able to
map several different parameters to consecutive buses so that it could
be easily sequenced.
|
|