|
@@ -57,9 +57,17 @@ var Game = {
|
|
soundDeferred.resolve(this);
|
|
soundDeferred.resolve(this);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- soundDeferred.promise.done(function() {
|
|
+ soundDeferred.promise
|
|
- Game.start();
|
|
+ .then(function() {
|
|
- });
|
|
+ return [
|
|
|
|
+ createSound('confirm', 'sound/confirm.mp3'),
|
|
|
|
+ createSound('back', 'sound/back.mp3'),
|
|
|
|
+ createSound('pause', 'sound/pause.mp3')
|
|
|
|
+ ]
|
|
|
|
+ })
|
|
|
|
+ .done(function() {
|
|
|
|
+ Game.start();
|
|
|
|
+ });
|
|
})();
|
|
})();
|
|
|
|
|
|
function Scene() {}
|
|
function Scene() {}
|
|
@@ -95,6 +103,7 @@ var MainMenu = new Scene();
|
|
];
|
|
];
|
|
|
|
|
|
Game.sceneManager.push(new SoundSafari(beats));
|
|
Game.sceneManager.push(new SoundSafari(beats));
|
|
|
|
+ soundManager.play('confirm');
|
|
}
|
|
}
|
|
MainMenu.update = function() {};
|
|
MainMenu.update = function() {};
|
|
MainMenu.draw = function() {
|
|
MainMenu.draw = function() {
|
|
@@ -125,6 +134,7 @@ var PauseScreen = new Scene();
|
|
case 112:
|
|
case 112:
|
|
case 32:
|
|
case 32:
|
|
Game.sceneManager.pop();
|
|
Game.sceneManager.pop();
|
|
|
|
+ soundManager.play('back');
|
|
}
|
|
}
|
|
};
|
|
};
|
|
PauseScreen.load = PauseScreen.resume = function() {
|
|
PauseScreen.load = PauseScreen.resume = function() {
|