playcanvas
Version:
PlayCanvas WebGL game engine
19 lines (18 loc) • 306 B
TypeScript
/**
* 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";