PannerNode.distanceModel
The distanceModel property of the PannerNode interface is an enumerated value determining which algorithm to use to reduce the volume of the audio source as it moves away from the listener.
The possible values are:
-
linear: A linear distance model calculating the gain induced by the distance according to:1 - rolloffFactor * (distance - refDistance) / (maxDistance - refDistance) -
inverse: An inverse distance model calculating the gain induced by the distance according to:refDistance / (refDistance + rolloffFactor * (Math.max(distance, refDistance) - refDistance)) -
exponential: An exponential distance model calculating the gain induced by the distance according to:pow((Math.max(distance, refDistance) / refDistance, -rolloffFactor).
inverse is the default value of distanceModel.
Syntax
var audioCtx = new AudioContext(); var panner = audioCtx.createPanner(); panner.distanceModel = 'inverse';
Value
A enum — see DistanceModelType.
Example
See BaseAudioContext.createPanner() for example code.
Specifications
| Specification |
|---|
| Web Audio API # dom-pannernode-distancemodel |
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
distanceModel |
14 |
12 |
25 |
No |
15 |
6 |
≤37 |
18 |
25 |
14 |
6 |
1.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/distanceModel