Options
All
  • Public
  • Public/Protected
  • All
Menu

SendAutomation inserts a single automation point from the track on which it is used to a track of your choice.

Hierarchy

  • SendAutomation

Implements

Index

Constructors

constructor

  • 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 dBFS
    • options.curve optional automation curve, defaults to 0
      const tLibrarySynth = {
      a: new techniques.SendAutomation({ to: 'verb', value: -6, curve: -0.5 })
      b: new techniques.SendAutomation({ to: 'verb', value: -12, curve: -0.5 })
      }
      

    Parameters

    • options: SendAutoOptions

    Returns SendAutomation

Properties

curve

curve: number = 0

Private Optional destinationTrack

destinationTrack: FluidTrack

The destination track

Private Optional unresolvedTrackName

unresolvedTrackName: string

value

value: number = 0

gain in dB

Methods

getOrCreateReceive

resolveDestinationTrack

use