lokki/math/==remap should work
Newbe needing help patching a 3 position switch/option
weasel79
#22
actually haha i think the easiest solution is if you just edit your mux object:
- click the little arrow top left of the mux object
- select "embed as patch"
- click the new "edit" button on the object
- scroll to the "K-Rate Code" section
- edit the code:
switch(inlet_s>0?inlet_s:0){
case 0: outlet_o= inlet_i0;break;
case 1: outlet_o= inlet_i1;break;
case 2: outlet_o= inlet_i2;break;
default: outlet_o= inlet_i2;break;
}
replace the case 0... to 0/64/127
and then you don't need any additional converion objects.
Afrowen86
#23
Excellent this was what i was talking about above, can see this being useful in a few instances, I'll need it for something else, thanks.