From 121672d44280bca86407fe09265b8133abc2fe84 Mon Sep 17 00:00:00 2001 From: Pavle Goloskokovic Date: Tue, 12 Dec 2017 19:40:36 +0100 Subject: [PATCH] Added loopSource field for timed loop sound source --- v3/src/sound/webaudio/WebAudioSound.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/v3/src/sound/webaudio/WebAudioSound.js b/v3/src/sound/webaudio/WebAudioSound.js index 2c0df4bdb..ff9436aef 100644 --- a/v3/src/sound/webaudio/WebAudioSound.js +++ b/v3/src/sound/webaudio/WebAudioSound.js @@ -25,6 +25,13 @@ var WebAudioSound = new Class({ * @property {AudioBufferSourceNode} source */ this.source = null; + /** + * [description] + * + * @private + * @property {AudioBufferSourceNode} loopSource + */ + this.loopSource = null; /** * [description] *