Added initial Bear Videos

This commit is contained in:
Brian Fertig 2025-08-24 21:35:17 -06:00
parent 85c65dcd6b
commit 453ce864b2
7 changed files with 2 additions and 0 deletions

BIN
assets/bear-excited.mp4 Normal file

Binary file not shown.

BIN
assets/bear-match.mp4 Normal file

Binary file not shown.

BIN
assets/bear-pleased.mp4 Normal file

Binary file not shown.

BIN
assets/bear-resting.mp4 Normal file

Binary file not shown.

BIN
assets/level-complete.mp3 Normal file

Binary file not shown.

BIN
assets/militaryBear.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@ -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`);