🔧 Jan 8 Fix New Game - Start with PrologueScene
❌ BUG FIX: Missing Intro Cutscene **Problem:** - Clicking 'New Game' went directly to GameScene - Skipped PrologueScene (intro story) - No intro explaining what happened **Solution:** - Changed StoryScene.js line 307 - startNewGame() now calls: this.scene.start('PrologueScene') - Intro cutscene will play before GameScene **Flow Now:** 1. Menu → Click 'New Game' 2. PrologueScene plays (intro story) 3. After prologue → GameScene ✅ Players will see intro explaining story, characters, setting ✅ Proper narrative introduction
This commit is contained in:
@@ -303,8 +303,8 @@ class StoryScene extends Phaser.Scene {
|
|||||||
|
|
||||||
startNewGame() {
|
startNewGame() {
|
||||||
console.log('🎮 Starting New Game...');
|
console.log('🎮 Starting New Game...');
|
||||||
console.log('🎮 Launching Main Game...');
|
console.log('🎬 Launching Prologue (Intro Cutscene)...');
|
||||||
this.scene.start('GameScene'); // Main game scene
|
this.scene.start('PrologueScene'); // ✅ START WITH PROLOGUE!
|
||||||
}
|
}
|
||||||
|
|
||||||
loadGame() {
|
loadGame() {
|
||||||
|
|||||||
Reference in New Issue
Block a user