Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

Vive, Unity audio not coming out of headset

0 votes
My PC is not redirecting audio to the vive headset. I've checked all of the vive options and they're all set as expected. I've reinstalled all the SteamVR components, but none of it's helped.

If I switch back to Unity audio, everything is OK.

There was comment about this, with regards to Oculus, and there was a small patch to fix it, but I'm not sure how to get the audioId from OpenVR SDK.

This is what I have for Oculus:
 

            AkWindowsSettings akWindowsSettings = (AkWindowsSettings)(ActivePlatformSettings);
            if (akWindowsSettings)
            {
                string audioDevice = OVRManager.audioOutId;
                uint audioOutId = AkSoundEngine.GetDeviceIDFromName(audioDevice);
                akWindowsSettings.UserSettings.m_MainOutputSettings.m_DeviceID = audioOutId;
            }

 

So I need something equivalent for Vive as OVRManager.audioOutId;\

I shouldn't need to do this. But I can't seem to fix this by just changing settings.

All other apps are OK.
asked Feb 12, 2019 in General Discussion by Brian W. (100 points)

Please sign-in or register to answer this question.

...