Lower volume of non spatialized sfx

This commit is contained in:
bmathews 2025-11-15 16:34:34 -08:00
parent 7a4792e4e8
commit dd305f591d

View file

@ -59,7 +59,7 @@ export function AudioEmitter({ object }: { object: ConsoleObject }) {
sound.setVolume(volume);
} else {
sound = new Audio(audioListener);
sound.setVolume(Math.min(volume, 0.5));
sound.setVolume(Math.min(volume, 0.25));
}
soundRef.current = sound;