Skip to content

Commit

Permalink
Update preloader.js
Browse files Browse the repository at this point in the history
Agregado los assets del game over
  • Loading branch information
swbvelasquez committed Oct 24, 2015
1 parent ef0d96b commit 41c7ee1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/states/preloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Preloader.prototype = {


this.load.image('background-intro','assets/images/intro-2.png');
this.load.image('background-menu','assets/images/menu-3.jpg');
this.load.image('background-gameover','assets/images/gameover-1.jpg');
this.load.image('continue-intro','assets/images/intro-continue.png');
this.load.image('play-menu','assets/images/menu-play.png');

Expand All @@ -33,7 +33,7 @@ Preloader.prototype = {
this.load.spritesheet('electrode','assets/images/bomb2.png', 32, 32);
this.load.spritesheet('explosion','assets/images/fire_2.png', 32, 32);

this.load.audio('music-menu', 'assets/audio/menu.mp3');
this.load.audio('music-gameover', 'assets/audio/menu.mp3');
this.load.audio('music-intro', 'assets/audio/opening.mp3');
this.load.audio('level_1', 'assets/audio/level1.mp3');
this.load.audio('level_2', 'assets/audio/level2.mp3');
Expand All @@ -45,4 +45,4 @@ Preloader.prototype = {
create: function() {
this.state.start('Intro');
}
};
};

0 comments on commit 41c7ee1

Please sign in to comment.