Hello,
Our game has a mode where two players take turns controlling a pawn in a single viewport. This causes a problem for us as FFMODStudioModule::UpdateViewportPosition() creates two listeners, one for each player with the second one being at the origin. As you can imagine this causes all sorts of issues with our positional audio.
To get around this, I have modified the loop in FFMODStudioModule::UpdateViewportPosition() to not add a listener if the player is not in control of a pawn. This seems to work for us.
Is this OK? Any advice on a better way of fixing this issue?