UNPKG

playcanvas

Version:

Open-source WebGL/WebGPU 3D engine for the web

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 };