Optionaloptions: Partial<ToneConstantSourceOptions<TypeName>>Protected_The curve applied to the fades, either "linear" or "exponential"
Protected_The fadeIn time of the amplitude envelope.
Protected_The fadeOut time of the amplitude envelope.
Protected_The output gain node.
Protected_List all of the node that must be set to match the ChannelProperties
Protected_The start time
Protected_The stop time
ReadonlycontextThe context belonging to the node.
Set this debug flag to log all events that happen in this class.
Get the playback state at the given time
Sources do not have input nodes
ReadonlynameThe name of the class
ReadonlyoffsetThe offset of the signal generator
The callback to invoke after the source is done playing.
The public output node
StaticversionThe version number semver
channelCount is the number of channels used when up-mixing and down-mixing connections to any inputs to the node. The default value is 2 except for specific nodes where its value is specially determined.
channelCountMode determines how channels will be counted when up-mixing and down-mixing connections to any inputs to the node. The default value is "max". This attribute has no effect for nodes with no inputs.
channelInterpretation determines how individual channels will be treated when up-mixing and down-mixing connections to any inputs to the node. The default value is "speakers".
Indicates if the instance was disposed. 'Disposing' an instance means that all of the Web Audio nodes that were created for the instance are disconnected and freed for garbage collection.
The duration in seconds of one sample.
Get the playback state at the current time
Protected_Get a subset of the properties which are in the partial props
Protected_Invoke the onended callback
Protected_Start the source at the given time
When to start the source
Optionalgain: numberProtected_Stop the source at the given time
When to stop the source
Protected_Stop the source node
Optionaltime: numberCancel a scheduled stop event
Connect the output of this node to the rest of the nodes in series.
const player = new Tone.Player("https://tonejs.github.io/audio/drum-samples/handdrum-loop.mp3");
player.autostart = true;
const filter = new Tone.AutoFilter(4).start();
const distortion = new Tone.Distortion(0.5);
// connect the player to the filter, distortion and then to the master output
player.chain(filter, distortion, Tone.Destination);
connect the output of a ToneAudioNode to an AudioParam, AudioNode, or ToneAudioNode
The output to connect to
OptionaloutputNum: number
The output to connect from
OptionalinputNum: number
The input to connect to
disconnect the output
Optionaldestination: InputNodeOptionaloutputNum: numberOptionalinputNum: numberDispose and disconnect
connect the output of this node to the rest of the nodes in parallel.
const player = new Tone.Player("https://tonejs.github.io/audio/drum-samples/conga-rhythm.mp3");
player.autostart = true;
const pitchShift = new Tone.PitchShift(4).toDestination();
const filter = new Tone.Filter("G5").toDestination();
// connect a node to the pitch shift and filter in parallel
player.fan(pitchShift, filter);
Get the object's attributes.
ProtectedlogPrints the outputs to the console log for debugging purposes.
Prints the contents only if either the object has a property
called debug set to true, or a variable called TONE_DEBUG_CLASS
is set to the name of the class.
Set multiple properties at once with an object.
Start the source node at the given time
Optionaltime: Time
When to start the source
Stop the source node at the given time.
Optionaltime: Time
When to stop the source
Convert the incoming time to seconds. This is calculated against the current TransportClass bpm
Optionaltime: TimeConvert the input time into ticks
Optionaltime: Time | TimeClass<number, TimeBaseUnit>StaticgetReturns all of the default options belonging to the class.
Wrapper around the native fire-and-forget ConstantSource. Adds the ability to reschedule the stop method.