🔧 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:
2026-01-08 16:40:09 +01:00
parent b966bd37fe
commit 63b5ed5158

View File

@@ -303,8 +303,8 @@ class StoryScene extends Phaser.Scene {
startNewGame() {
console.log('🎮 Starting New Game...');
console.log('🎮 Launching Main Game...');
this.scene.start('GameScene'); // Main game scene
console.log('🎬 Launching Prologue (Intro Cutscene)...');
this.scene.start('PrologueScene'); // ✅ START WITH PROLOGUE!
}
loadGame() {