mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 22:39:18 +02:00
AudioEffectOptions API JSDoc stubs
This commit is contained in:
parent
3891ebe703
commit
fb175d7110
2 changed files with 32 additions and 1 deletions
|
@ -89,7 +89,7 @@ public:
|
||||||
|
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* @function Audio.setReverbOptions
|
* @function Audio.setReverbOptions
|
||||||
* @param {} options
|
* @param {AudioEffectOptions} options
|
||||||
*/
|
*/
|
||||||
Q_INVOKABLE void setReverbOptions(const AudioEffectOptions* options);
|
Q_INVOKABLE void setReverbOptions(const AudioEffectOptions* options);
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,37 @@
|
||||||
#include <QtScript/QScriptContext>
|
#include <QtScript/QScriptContext>
|
||||||
#include <QtScript/QScriptEngine>
|
#include <QtScript/QScriptEngine>
|
||||||
|
|
||||||
|
/**jsdoc
|
||||||
|
* @class AudioEffectOptions
|
||||||
|
*
|
||||||
|
* @hifi-interface
|
||||||
|
* @hifi-client-entity
|
||||||
|
* @hifi-server-entity
|
||||||
|
* @hifi-assignment-client
|
||||||
|
*
|
||||||
|
* @property {number} bandwidth
|
||||||
|
* @property {number} preDelay
|
||||||
|
* @property {number} lateDelay
|
||||||
|
* @property {number} reverbTime
|
||||||
|
* @property {number} earlyDiffusion
|
||||||
|
* @property {number} lateDiffusion
|
||||||
|
* @property {number} roomSize
|
||||||
|
* @property {number} density
|
||||||
|
* @property {number} bassMult
|
||||||
|
* @property {number} bassFreq
|
||||||
|
* @property {number} highGain
|
||||||
|
* @property {number} highFreq
|
||||||
|
* @property {number} modRate
|
||||||
|
* @property {number} modDepth
|
||||||
|
* @property {number} earlyGain
|
||||||
|
* @property {number} lateGain
|
||||||
|
* @property {number} earlyMixLeft
|
||||||
|
* @property {number} earlyMixRight
|
||||||
|
* @property {number} lateMixLeft
|
||||||
|
* @property {number} lateMixRight
|
||||||
|
* @property {number} wetDryMix
|
||||||
|
*/
|
||||||
|
|
||||||
class AudioEffectOptions : public QObject {
|
class AudioEffectOptions : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue