diff --git a/v3/src/sound/BaseSoundManager.js b/v3/src/sound/BaseSoundManager.js index 2cc92f2ac..1a7e8a137 100644 --- a/v3/src/sound/BaseSoundManager.js +++ b/v3/src/sound/BaseSoundManager.js @@ -73,6 +73,13 @@ var BaseSoundManager = new Class({ * @property {Phaser.Events.EventDispatcher} events */ this.events = new EventDispatcher(); + /** + * Property that actually holds the value of global playback rate. + * + * @property {number} _rate + * @private + */ + this._rate = 1; }, add: NOOP, addAudioSprite: NOOP,