2 summary:: store control values and bus mappings
3 categories:: Libraries>JITLib>NodeProxy
7 Object to store control values and bus mappings independant of of a specific node.
12 set arguments of a node
15 set bus mappings of a node
24 set ranges of controls
27 map num busses mappings to node
30 return setting at that key.
33 apply a setting to a node by sending a bundle
36 apply a setting to a node by sending a bundle
39 add all my messages to the bundle
49 { arg freq=320, amp=0.2;
50 Out.ar(0, SinOsc.ar(freq, 0, amp));
53 { arg rate=2, busNum=0;
54 Out.kr(busNum, LFPulse.kr(rate, 0, 0.1, 0.2))
62 y = Synth.before(x, "lfo", [\busNum, b]);
65 //create some node maps
78 h.sendToNode(x); //the first time a new bundle is made
81 h.sendToNode(x); //the second time the cache is used
86 h.sendToNode(x); //when a value was changed, a new bundle is made
89 x.free; b.free; y.free;