Difference between revisions of "DistanceModel"

(Updated for 0.10.0.)
(refresh dead link to OpenAL documentation)
Line 2: Line 2:
 
The different distance models.
 
The different distance models.
  
Extended information can be found in the [http://connect.creativelabs.com/openal/Documentation/OpenAL%201.1%20Specification.htm#_Toc199835864 Creative documentation].
+
Extended information can be found in the chapter "3.4. Attenuation By Distance" of [https://www.openal.org/documentation/openal-1.1-specification.pdf OpenAL 1.1 specification].
 +
 
 
== Constants ==
 
== Constants ==
 
;none: Sources do not get attenuated.
 
;none: Sources do not get attenuated.

Revision as of 13:15, 30 May 2016

Available since LÖVE 0.8.0
This enum is not supported in earlier versions.

The different distance models.

Extended information can be found in the chapter "3.4. Attenuation By Distance" of OpenAL 1.1 specification.

Constants

none
Sources do not get attenuated.
inverse
Inverse distance attenuation.
inverseclamped
Inverse distance attenuation. Gain is clamped. In version 0.9.2 and older this is named inverse clamped.
linear
Linear attenuation.
linearclamped
Linear attenuation. Gain is clamped. In version 0.9.2 and older this is named linear clamped.
exponent
Exponential attenuation.
exponentclamped
Exponential attenuation. Gain is clamped. In version 0.9.2 and older this is named exponent clamped.

See Also


Other Languages