Fixes and additions for first chapter of bridal gears.

This commit is contained in:
firebingo 2018-06-05 21:14:02 -07:00
parent e58002ce4c
commit e25cd1f929
6 changed files with 43 additions and 13 deletions

View file

@ -90,7 +90,7 @@ class audioController {
if(!this.loader.bufferList[sound]) {
return;
}
let source = this.audioCtx.createBufferSource()
let source = this.audioCtx.createBufferSource();
this.sources[sound] = source;
source.buffer = this.loader.bufferList[sound];
source.loop = false;