DistanceAttenuationMode
Determines how an AudioEmitter attenuates (fades out) as the distance between the AudioEmitter and an interacting AudioListener increases.
Items 5
| History | Name | Value | Description | |
|---|---|---|---|---|
| 731 | Custom | 0 | Uses the developer-supplied DistanceAttenuation curve for gain rolloff. | |
| 731 | InverseTapered | 1 | Volume attenuates according to a hybrid model which follows the DistanceAttenuationMode.Inverse model when close to the lower bound of AudioEmitter.DistanceAttenuationBounds and the DistanceAttenuationMode.LinearSquared model when close to the upper bound of AudioEmitter.DistanceAttenuationBounds. This is done by taking the lesser of these two curves, such that the curve mostly follows an inverse relationship but tapers to silence at the maximum distance. | |
| 731 | Linear | 2 | Volume attenuates between the bounds of
AudioEmitter.DistanceAttenuationBounds with a linear relationship.
This is done by computing ( | |
| 731 | LinearSquared | 3 | Volume attenuates between the bounds of AudioEmitter.DistanceAttenuationBounds with a linear-squared relationship. This is done by squaring the formula used to determine the volume when using DistanceAttenuationMode.Linear, which creates a parabolic curve with a steeper fade. | |
| 731 | Inverse | 4 | Volume attenuates from the lower bound of
AudioEmitter.DistanceAttenuationBounds in an inverse manner,
mirroring how sounds attenuate in the real world. This is done by
computing ( |
Description
Determines how an AudioEmitter attenuates (fades out) as the distance between the AudioEmitter and an interacting AudioListener increases. Most values refer to a preset rolloff curve that the AudioEmitter will apply over the range given by DistanceAttenuationBounds. When set to DistanceAttenuationMode.Custom, the emitter instead uses a developer-supplied curve given by AudioEmitter:SetDistanceAttenuation().
History 6
- 731 Add LinearSquared
- 731 Add Linear
- 731 Add InverseTapered
- 731 Add Inverse
- 731 Add Custom
- 731 Add DistanceAttenuationMode