setValueCurveAtTime abstract method

AudioParam setValueCurveAtTime(
  1. TauArray<TauNumber> values,
  2. TauTime startTime,
  3. TauTime duration
)

The setValueCurveAtTime() method of the AudioParam schedules the parameter's value to change following a curve defined by a list of values.

The curve is a linear interpolation between the sequence of values defined in an array of floating-point values, which are scaled to fit into the given interval starting at startTime and a specific duration.

Implementation

AudioParam setValueCurveAtTime(
  TauArray<TauNumber> values,
  TauTime startTime,
  TauTime duration,
);