menu
 

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

0 투표

We're testing out Wwise 2019.1.1.6977 with Unity 2019.1.7f1 for LuminOS, and noticed that when launching on a Magic Leap One device, no plugins are loading. This seems to be due to the path being incorrect as seen in the logs:

Example:

AKDEBUG : dlopen failed: library "/package/binlibAkSynthOne.so" not found

... etc. for each plugin...

The files are verified located in package/bin/libxxxxxx.so It seems that the path is missing a "/" after "bin".

When profiling in Wwise, this shows up as "Could not find plugin dynamic library <plugin>" and "Plug-in not found: <plugin>" when attempting to use them at runtime.

There seem to be no issues using plugins while in the Unity Editor with the same versions, this is only when deploying.

Any tips on how to resolve this?

General Discussion Brett S. (100 포인트) 로 부터
After some investigation, we've managed to sort out a local fix.

We added a '/' after "bin" in line 259 of AkCommonPlatformSettings.cs and plugins now seem to load fine when deploying on ML1 devices. We'vev checked the AKDEBUG logs and it now points to the correct path.

The line with the local fix:

259: return index == -1 ? dataPath : dataPath.Remove(index, find.Length).Insert(index, "bin/");

Please sign-in or register to answer this question.

...