We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ede77d commit 52cbffcCopy full SHA for 52cbffc
1 file changed
v3/src/sound/BaseSoundManager.js
@@ -36,6 +36,13 @@ var BaseSoundManager = new Class({
36
* @property {number} rate
37
*/
38
this.rate = 1;
39
+ /**
40
+ * Global detuning of all sounds in [cents](https://en.wikipedia.org/wiki/Cent_%28music%29).
41
+ * The range of the value is -1200 to 1200, but we recommend setting it to [50](https://en.wikipedia.org/wiki/50_Cent).
42
+ *
43
+ * @property {number} detune
44
+ */
45
+ this.detune = 0;
46
/**
47
* Global amount of panning to apply.
48
* The value can range between -1 (full left pan) and 1 (full right pan).
0 commit comments