Options
All
  • Public
  • Public/Protected
  • All
Menu

Unlike SendAutomation, which always inserts one automation point, using SendAutomationRamp always inserts two automation points. The use method identifies the current value at the beginning of the event, and ramps to the new value over the duration of the triggering event.

const tLibrarySynth = {
  a: new techniques.SendAutomationRamp({ to: 'verb', value: -6, curve: -0.5 })
  b: new techniques.SendAutomationRamp({ to: 'verb', value: -12, curve: -0.5 })
}

Hierarchy

  • SendAutomationRamp

Implements

Index

Constructors

Properties

Methods

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

    Parameters

    • options: SendAutoOptions

    Returns SendAutomationRamp

Properties

curve

curve: number = 0

rampEndTechnique

rampEndTechnique: SendAutomation

Methods

use