We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c896ba commit 912a737Copy full SHA for 912a737
1 file changed
v3/src/sound/BaseSoundManager.js
@@ -44,13 +44,6 @@ var BaseSoundManager = new Class({
44
* @property {number} detune
45
*/
46
this.detune = 0;
47
- /**
48
- * Global amount of panning to apply.
49
- * The value can range between -1 (full left pan) and 1 (full right pan).
50
- * @property {number} pan
51
- */
52
- this.pan = 0;
53
- // TODO add fields for global spatialization options
54
/**
55
* Flag indicating if sounds should be paused when game looses focus,
56
* for instance when user switches tabs or to another program/app.
@@ -119,7 +112,7 @@ var BaseSoundManager = new Class({
119
112
}
120
113
return sound;
121
114
},
122
- addOscillator: NOOP,
115
+ play: NOOP,
123
116
remove: NOOP,
124
117
removeByKey: NOOP,
125
118
pauseAll: NOOP,
0 commit comments