Added initial Bear Videos
This commit is contained in:
parent
85c65dcd6b
commit
453ce864b2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 1.5 MiB |
|
|
@ -56,6 +56,7 @@ export class GameScene extends Phaser.Scene {
|
|||
// Music
|
||||
this.load.audio('clear', 'assets/clear.mp3');
|
||||
this.load.audio('level-up', 'assets/level-up.mp3');
|
||||
this.load.audio('level-complete', 'assets/level-complete.mp3');
|
||||
this.load.audio('switch', 'assets/switch.mp3');
|
||||
this.load.audio('game-over', 'assets/game-over-boom.mp3');
|
||||
this.load.audio('countdown', 'assets/countdown.mp3');
|
||||
|
|
@ -1015,6 +1016,7 @@ export class GameScene extends Phaser.Scene {
|
|||
this.moveInterval = newLevel.moveInterval;
|
||||
this.LevelText.setText(`Level: ${this.level}`);
|
||||
this.sound.play('level-up');
|
||||
this.sound.play('level-complete');
|
||||
|
||||
if (this.ally !== newLevel.ally) {
|
||||
this.sound.play(`${this.ally}-outro`);
|
||||
|
|
|
|||
Loading…
Reference in New Issue