linearRampToValueAtTime method

AudioParam linearRampToValueAtTime(
  1. num value,
  2. num endTime
)

The linearRampToValueAtTime() method of the AudioParam Interface schedules a gradual linear change in the value of the AudioParam. The change starts at the time specified for the previous event, follows a linear ramp to the new value given in the value parameter, and reaches the new value at the time given in the endTime parameter.

Implementation

external AudioParam linearRampToValueAtTime(
  num value,
  num endTime,
);