Added loopStart, loopEnd and onended properties to AudioBufferSourceNode in the webaudioapi definition to match the latest W3C spec: http://www.w3.org/TR/webaudio/#AudioBufferSourceNode

This commit is contained in:
Chris Smith
2014-05-04 22:24:10 -07:00
parent 09e35ed6c8
commit 5433e4fa61
2 changed files with 18 additions and 0 deletions
+3
View File
@@ -60,6 +60,9 @@ declare var footstepsBuffer: any;
lowpassFilter.connect(wet1);
dry1.connect(masterDry);
wet1.connect(reverb);
source1.loop = true;
source1.loopStart = 0;
source1.loopEnd = 300;
// Connect source2
var dry2 = context.createGain();