diff --git a/dist/shattered_sword_assets/images/brown.png b/dist/shattered_sword_assets/images/brown.png new file mode 100644 index 0000000..d926359 Binary files /dev/null and b/dist/shattered_sword_assets/images/brown.png differ diff --git a/src/shattered_sword/Scenes/GameLevel.ts b/src/shattered_sword/Scenes/GameLevel.ts index 8c74524..256ddfd 100644 --- a/src/shattered_sword/Scenes/GameLevel.ts +++ b/src/shattered_sword/Scenes/GameLevel.ts @@ -976,7 +976,7 @@ export default class GameLevel extends Scene { protected playStartStory() { if (!this.touchedStartCheckPoint) { this.touchedStartCheckPoint = true; - this.storyLoader("shattered_sword_assets/jsons/level1story.json"); + this.storyLoader("shattered_sword_assets/jsons/story.json"); this.startTimer(); } } diff --git a/src/shattered_sword/Scenes/SplashScreen.ts b/src/shattered_sword/Scenes/SplashScreen.ts index 4843a67..cde6d7f 100644 --- a/src/shattered_sword/Scenes/SplashScreen.ts +++ b/src/shattered_sword/Scenes/SplashScreen.ts @@ -22,8 +22,8 @@ export default class SplashScreen extends Scene { loadScene(): void { //load images - this.load.image("logo", "shattered_sword_assets/images/black.png"); this.load.image("backgroundImage", "shattered_sword_assets/images/logo.png"); + this.load.image("logo", "shattered_sword_assets/images/brown.png"); // Load the menu song //this.load.audio("menu", "assets/music/menu.mp3"); } diff --git a/src/shattered_sword/Scenes/Tutorial.ts b/src/shattered_sword/Scenes/Tutorial.ts index b7b67bc..12b6479 100644 --- a/src/shattered_sword/Scenes/Tutorial.ts +++ b/src/shattered_sword/Scenes/Tutorial.ts @@ -45,4 +45,12 @@ export default class Tutorial extends GameLevel { this.viewport.setZoomLevel(1); this.sceneManager.changeToScene(Porcelain); } + + protected playStartStory(): void { + if (!this.touchedStartCheckPoint) { + this.touchedStartCheckPoint = true; + this.storyLoader("shattered_sword_assets/jsons/level1story.json"); + this.startTimer(); + } + } } \ No newline at end of file