SoundManager converted and playing audio :)

This commit is contained in:
Richard Davey
2013-09-03 01:24:16 +01:00
parent ed13283f0f
commit c18de53bab
8 changed files with 1068 additions and 794 deletions
+2 -2
View File
@@ -295,7 +295,7 @@ Phaser.Game.prototype = {
this.time = new Phaser.Time(this);
this.tweens = new Phaser.TweenManager(this);
this.input = new Phaser.Input(this);
// this.sound = new Phaser.SoundManager(this);
this.sound = new Phaser.SoundManager(this);
// this.physics = new Phaser.Physics.PhysicsManager(this);
this.plugins = new Phaser.PluginManager(this, this);
this.net = new Phaser.Net(this);
@@ -379,7 +379,7 @@ Phaser.Game.prototype = {
this.input.update();
this.tweens.update();
// this.stage.update();
// this.sound.update();
this.sound.update();
// this.physics.update();
this.world.update();
this.state.update();