the initial state of the UGen. The number of channels
of this signal should match with the number of channels
written via LocalOut
.
the initial state of the UGen. The number of channels
of this signal should match with the number of channels
written via LocalOut
.
A UGen that reads buses that are local to the enclosing synth. These buses should be written using a
LocalOut
ugen. They behave like regular buses, but are more convenient for the implementation of a self contained effect that uses a feedback processing loop.In a synth, there can be only each one control-rate and audio-rate
LocalIn
/LocalOut
pair. The signal written to aLocalOut
will not be read by theLocalIn
until the next control block cycle, introducing a delay ofControlDur
.Warning: The argument has been changed
numChannels: Int
in version 1.15.3 toinit: GE
in version 1.16.0. The previous version was incompatible with SuperCollider 3.6.x. A previous usage such asLocalIn.ar(2)
to create two channels must now be expressed asLocalIn.ar(Seq(0, 0))
!Examples
ControlDur
InFeedback
LocalOut