// PreloadScene - Load 2.5D tiles ONLY class PreloadScene extends Phaser.Scene { constructor() { super({ key: 'PreloadScene' }); } preload() { console.log('⏳ Loading 2.5D tiles...'); // Force fresh load with timestamp const t = Date.now(); this.load.image('grass_tile', `assets/grass_tile.png?v=${t}`); this.load.image('water_tile', `assets/water_tile.png?v=${t}`); console.log('✅ Tiles loaded!'); } create() { console.log('🎬 Starting GameScene...'); this.scene.start('GameScene'); } }