Tone.Follower
↳ EXTENDS Tone.AudioNodeTone.Follower is a crude envelope follower which will follow the amplitude of an incoming signal. Take care with small (< 0.02) attack or decay values as follower has some ripple which is exaggerated at these values. Read more about envelope followers (also known as envelope detectors) on Wikipedia.
CONSTRUCTOR
new Tone.Follower ( [attack
] , [ release
]
)
DEFAULTS
{
attack
:
0.05
,
release
:
0.5
}
EXAMPLE
Members
↳ inherited from
Tone.AudioNode
.context
↝ Tone.Context READONLY #Get the audio context belonging to this instance.
Methods
.connect ( )
#Borrows the connect method from Signal so that the output can be used as a Tone.Signal control signal.
↳ inherited from
Tone.AudioNode
.disconnect ( )
#
output
Either the output index to disconnect if the output is an array, or the node to disconnect from.
↪ returns
Tone.AudioNode
this
disconnect the output
↳ inherited from
Tone.AudioNode
.toMaster ( )
#
↪ returns
Tone.AudioNode
this
Connect ‘this’ to the master output. Shorthand for this.connect(Tone.Master)