menu
 

La section Questions et réponses de la communauté Audiokinetic est un forum où les utilisateurs de Wwise et de Strata peuvent poser des questions et répondre à celles des autres membres de la communauté. Si vous souhaitez obtenir une réponse de la part de l'équipe de soutien technique d'Audiokinetic, veillez à utiliser le formulaire de Tickets de Soutien.

0 votes

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?

dans General Discussion par Brett S. (100 points)
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.

...