UNPKG

playcanvas

Version:

PlayCanvas WebGL game engine

18 lines (16 loc) 357 B
/** * Linear distance model. * * @category Sound */ const DISTANCE_LINEAR = 'linear'; /** * Inverse distance model. * * @category Sound */ const DISTANCE_INVERSE = 'inverse'; /** * Exponential distance model. * * @category Sound */ const DISTANCE_EXPONENTIAL = 'exponential'; export { DISTANCE_EXPONENTIAL, DISTANCE_INVERSE, DISTANCE_LINEAR };