We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1a1557 commit f7f5bebCopy full SHA for f7f5beb
1 file changed
v3/src/sound/webaudio/WebAudioSound.js
@@ -39,6 +39,13 @@ var WebAudioSound = new Class({
39
* @property {number} startTime
40
*/
41
this.startTime = 0;
42
+ /**
43
+ * Relative time when sound was paused.
44
+ * Corresponds to the seek value at the time when pause() method was called on this sound.
45
+ *
46
+ * @property {number} pausedTime
47
+ */
48
+ this.pausedTime = 0;
49
this.muteNode.connect(this.volumeNode);
50
this.volumeNode.connect(manager.destination);
51
if (config === void 0) {
0 commit comments