2 summary:: Place holder for multiple outputs
3 categories:: UGens>Base
7 OutputProxy is used by some UGens as a place holder for multiple outputs.
8 There is no reason for a user to create an OutputProxy directly.
12 // Pan2 uses an OutputProxy for each of its two outputs.
13 out = Pan2.ar(WhiteNoise.ar, 0.0);
23 The UGen that is the source for this OutputProxy.
27 // Pan2 uses an OutputProxy for each of its two outputs.
28 # left, right = Pan2.ar(WhiteNoise.ar, 0.0);
32 The code::source:: method is also defined in Array, so that the source can be obtained this way as well:
36 // Pan2 uses an OutputProxy for each of its two outputs.
37 out = Pan2.ar(WhiteNoise.ar, 0.0);