UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

19 lines 593 B
/** * The shape of the audio ramp used to set an audio parameter's value, such as a sound's volume. */ export var AudioParameterRampShape; (function (AudioParameterRampShape) { /** * The ramp is linear. */ AudioParameterRampShape["Linear"] = "linear"; /** * The ramp is exponential. */ AudioParameterRampShape["Exponential"] = "exponential"; /** * The ramp is logarithmic. */ AudioParameterRampShape["Logarithmic"] = "logarithmic"; })(AudioParameterRampShape || (AudioParameterRampShape = {})); //# sourceMappingURL=audioParameter.js.map