Audiokinetic의 커뮤니티 Q&A는 사용자가 Wwise와 Strata 커뮤니티 내에서 서로 질문과 답변을 하는 포럼입니다. Audiokinetic의 기술 지원팀에게 문의하고 싶으신 경우 지원 티켓 페이지를 사용해주세요.

0 투표
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.
General Discussion Brian W. (100 포인트) 로 부터

Please sign-in or register to answer this question.

...