Accepts three parameters:
options.to
can be a FluidTrack instance or a track name string. A
send will be created on the track if it does not exist already. If the
track does not exist, using this technique will throw an error.options.value
send level in dBFSoptions.curve
optional automation curve, defaults to 0const tLibrarySynth = {
a: new techniques.SendAutomation({ to: 'verb', value: -6, curve: -0.5 })
b: new techniques.SendAutomation({ to: 'verb', value: -12, curve: -0.5 })
}
The destination track
gain in dB
Get the destination track, assigning it to this.destionationTrack if needed, and throwing if it is unspecified or if it cannot be found.
SendAutomation inserts a single automation point from the track on which it is used to a track of your choice.