I am working on a Quest 3 Unity game where you can switch to a 3rd person god mode like view. Your hands can still interact with the environment, but there is also your character moving on the ground. The listener is on the camera and obviously all sounds with short max attenuation go silent.
Is there a way to scale globally distance at the listener level without huge performance costs?
I was thinking about 3 solutions:
- 
Automating max distance on all SFX with a global parameter to double it in size, but I am worried about performance and losing the ability to create custom curves with a gain plugin 
- 
Switch to an audio listener on the player, but since we are using an HRTF spatializer, sounds behind the player will be processed “wrong”, especially for grab and release sounds 
- 
Change the distance unit from 1 to 1 to a different ration 
Any suggestions?