Inherited from Serializable
Inherited from Serializable
Inherited from HasSideEffect
Inherited from ControlRated
Inherited from SingleOut
Inherited from SomeOut
Inherited from GE.Lazy
Inherited from GE
Inherited from UGenSource[UGenInLike]
Inherited from Expander[UGenInLike]
Inherited from Lazy
Inherited from Product
Inherited from Equals
Inherited from AnyRef
Inherited from Any
A UGen that, when triggered, pauses enclosing synth. It pauses the enclosing synth when the input signal crosses from non-positive to positive.
Note that if the trigger is initially high the UGen will not react. For example,
PauseSelf.kr("foo".kr)
will not work if the control is initially1
. A work-around is to wrap the input in this case in aTrig
object:PauseSelf.kr(Trig.kr("foo".kr))
. This is most likely a bug.This UGen outputs its input signal for convenience.
the input signal which will trigger the action.
FreeSelf
Pause