diff --git a/docs/api/audio/Audio.html b/docs/api/audio/Audio.html index 3838bfdb8b01c006bdb7f1bd484b8d3de3818632..a04b0d3b342aba43850f32bf2013edfc3656de89 100644 --- a/docs/api/audio/Audio.html +++ b/docs/api/audio/Audio.html @@ -63,7 +63,7 @@
The [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioContext AudioContext] of the [page:AudioListener listener] given in the constructor.

[property:Array filters]

-
Whether the audio is currently playing. Default is empty array.
+
Represents an array of [link:https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode BiquadFilterNodes]. Can be used to apply a variety of low-order filters to create more complex sound effects. Filters are set via [page:Audio.setFilter] or [page:Audio.setFilters].

[property:GainNode gain]

A [link:https://developer.mozilla.org/en-US/docs/Web/API/GainNode GainNode] created @@ -164,13 +164,13 @@

[method:null setFilter]( filter )

- Add the filter to the [page:Audio.filters filters] array. + Applies a single [link:https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode BiquadFilterNode] to the audio.

[method:Audio setFilters]( [param:Array value] )

value - arrays of filters.
- Set the [page:Audio.filters filters] array to *value*. + Applies an array of [link:https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode BiquadFilterNodes] to the audio.

[method:null setLoop]( [param:Boolean value] )