WIP: Camera controls, WebGL setup, Procedural grass attempt (Black screen debug)

This commit is contained in:
2026-01-18 05:35:23 +01:00
parent 91eb68a65f
commit de089e5b01
16 changed files with 353 additions and 2912 deletions

View File

@@ -144,7 +144,7 @@ export class DrugEconomySystem {
applyMarijuanaAudio(config) {
// Change music to chill variant
const currentMusic = this.scene.sound.get('background_music');
const currentMusic = null; // this.scene.sound.get('background_music');
if (currentMusic) {
// Fade out current
this.scene.tweens.add({
@@ -189,7 +189,7 @@ export class DrugEconomySystem {
duration: 2000,
onComplete: () => {
chillMusic.stop();
this.scene.sound.play('background_music', { loop: true, volume: 0.5 });
// this.scene.sound.play('background_music', { loop: true, volume: 0.5 });
}
});
}