This commit is contained in:
2025-12-11 21:09:03 +01:00
parent 8b37814bd8
commit fa61ccc5a3
7 changed files with 894 additions and 1 deletions

View File

@@ -172,6 +172,10 @@ class GameScene extends Phaser.Scene {
// ALL NPCs REMOVED - Solo farming mode
console.log('🌾 Solo farming mode - no NPCs');
// FPS Monitor (Performance)
console.log('📊 Initializing FPS Monitor...');
this.fpsMonitor = new FPSMonitor(this);
// Easter Egg: Broken Scooter
console.log('🛵 Spawning Scooter Easter Egg...');
this.vehicles = [];
@@ -603,6 +607,9 @@ class GameScene extends Phaser.Scene {
if (this.worldEventSystem) this.worldEventSystem.update(delta);
// FPS Monitor Update
if (this.fpsMonitor) this.fpsMonitor.update();
// Debug Info
if (this.player) {
const playerPos = this.player.getPosition();