Sound gestion improved

This commit is contained in:
Clement Gournay
2015-07-18 13:25:38 +09:00
parent 96677c8635
commit b868c2598c
4 changed files with 7 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ function soundSystem(controller){
_channels[i]["end"] = -1;
_channels[i]["audio"] = new Audio();
}
this.playSound = function(soundID){
for(var i=0;i<_channelMAX;i++){ //play in different sounds in different channels
@@ -27,7 +27,7 @@ function soundSystem(controller){
break;
}
}
}
this.pauseSound = function(soundID, stop){