TransportTime is a the time along the Transport's timeline. It is similar to Tone.Time, but instead of evaluating against the AudioContext's clock, it is evaluated against the Transport's position. See TransportTime wiki.
The context associated with the time value. Used to computeTransport and context-relative timing.
Unit values
Set this debug flag to log all events that happen in this class.
The default units
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 version number semver
disconnect and dispose.
Coerce a time type into this units type.
Returns all of the default options belonging to the class.
Quantize the time by the given subdivision. Optionally add a percentage which will move the time value towards the ideal quantized value by that percentage.
Tone.Time(21).quantize(2); // returns 22
Tone.Time(0.6).quantize("4n", 0.5); // returns 0.55
Move the time value towards the quantized value by a percentage.
Return the time encoded as Bars:Beats:Sixteenths.
Return the value in hertz
Return the value as a midi note.
Return the time in milliseconds.
Convert a Time to Notation. The notation values are will be the closest representation between 1m to 128th note.
// if the Transport is at 120bpm:
Tone.Time(2).toNotation(); // returns "1m"
Return the time in samples
Return the time in seconds.
Convert the class to a string
const osc = new Tone.Oscillator();
console.log(osc.toString());
Return the time in ticks.
Evaluate the time value. Returns the time in seconds.