DelayNode

external class DelayNode(context: BaseAudioContext, options: DelayOptions = definedExternally) : AudioNode(source)

A delay-line; an AudioNode audio-processing module that causes a delay between the arrival of an input data and its propagation to the output.

MDN Reference

Constructors

Link copied to clipboard
constructor(context: BaseAudioContext, options: DelayOptions = definedExternally)

Properties

Functions

Link copied to clipboard
fun connect(destinationParam: AudioParam, output: Int = definedExternally)

fun connect(destinationNode: AudioNode, output: Int = definedExternally, input: Int = definedExternally): AudioNode
Link copied to clipboard
fun disconnect(output: Int)
fun disconnect(destinationNode: AudioNode)
fun disconnect(destinationParam: AudioParam)
fun disconnect(destinationNode: AudioNode, output: Int)
fun disconnect(destinationParam: AudioParam, output: Int)
fun disconnect(destinationNode: AudioNode, output: Int, input: Int)
Link copied to clipboard