UNPKG

playcanvas

Version:

PlayCanvas WebGL game engine

21 lines (19 loc) 405 B
/** * Linear distance model. * * @type {string} * @category Sound */ var DISTANCE_LINEAR = 'linear'; /** * Inverse distance model. * * @type {string} * @category Sound */ var DISTANCE_INVERSE = 'inverse'; /** * Exponential distance model. * * @type {string} * @category Sound */ var DISTANCE_EXPONENTIAL = 'exponential'; export { DISTANCE_EXPONENTIAL, DISTANCE_INVERSE, DISTANCE_LINEAR };