Hard Reset: Purged all assets and cleaned up PreloadScene image loading

This commit is contained in:
2025-12-28 01:55:28 +01:00
parent c8743986ad
commit 5b0aebe3dc
19801 changed files with 158 additions and 38940 deletions

View File

@@ -66,6 +66,11 @@ class StatusEffectSystem {
// Camera Shake/Waves?
this.scene.cameras.main.setLerp(0.05, 0.05); // Looser camera
// Audio: High Ambient
if (this.scene.soundManager) {
this.scene.soundManager.playHighAmbient();
}
}
}
@@ -87,6 +92,11 @@ class StatusEffectSystem {
// Reset camera
this.scene.cameras.main.setLerp(1, 1);
// Audio: Stop High Ambient
if (this.scene.soundManager) {
this.scene.soundManager.stopHighAmbient();
}
}
}