UNPKG

playcanvas

Version:

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

19 lines (18 loc) 306 B
/** * Linear distance model. * * @category Sound */ export const DISTANCE_LINEAR: "linear"; /** * Inverse distance model. * * @category Sound */ export const DISTANCE_INVERSE: "inverse"; /** * Exponential distance model. * * @category Sound */ export const DISTANCE_EXPONENTIAL: "exponential";