コミュニティQ&A

Audiokineticのコミュニティ主導のQ&Aフォーラムへようこそ。ここはWwiseとStrataのユーザのみなさまがお互いに協力し合う場です。弊社チームによる直接のサポートをご希望の場合はサポートチケットページをご利用ください。バグを報告するには、Audiokinetic LauncherのBug Reportオプションをご利用ください。(Q&AフォーラムではBug Reportを受け付けておりませんのでご注意ください。専用のBug Reportシステムをご利用いただくことで、バグの報告が適切な担当部門に届き、修正される可能性が高まります。)

最適な回答を迅速に得られるよう、ご質問を投稿される際は以下のヒントをご参考ください。

  • 具体的に示す:何を達成したいのか、またはどんな問題に直面しているのかを具体的に示してください。
  • 重要な詳細情報を含める:Wwiseとゲームエンジンのバージョンやご利用のOSなど詳細情報を記載してください。
  • 試したことを説明する:すでに試してみたトラブルシューティングの手順を教えてください。
  • 事実に焦点を当てる:問題の技術的な事実を記載してください。問題に焦点を当てることで、ほかのユーザのみなさまが解決策を迅速に見つけやすくなります。

0 支持

Greetings, we are using Unity 2017.1.3f1 with Wwise  2017.2.4.6590, Wwise Integration 2017.2.4.6590.1064. 

I succesfully integrated Unity and Wwise, generated soundbank and push my commits via Source Tree, but when the programmer tries to build the project the Wwise won't let it happen.

It works perfectly on my machine though.

The console gives errors:

WwiseUnity: Could not find source folder for <Android> platform. Did you remember to generate your banks?
UnityEngine.Debug:LogError(Object)
AkBuildPreprocessor:CopySoundbanks(Boolean, String, String&) (at Assets/Wwise/Editor/WwiseSetupWizard/AkBuildPreprocessor.cs:97)
AkBuildPreprocessor:OnPreprocessBuildInternal(BuildTarget, String) (at Assets/Wwise/Editor/WwiseSetupWizard/AkBuildPreprocessor.cs:132)
AkBuildPreprocessor:OnPreprocessBuild(BuildTarget, String) (at Assets/Wwise/Editor/WwiseSetupWizard/AkBuildPreprocessor.cs:165)
UnityEditor.HostView:OnGUI()

----------------------------------------------------------

WwiseUnity: Soundbank folder has not been copied for <Android> target at <C:/Users/user/Desktop/Soccer.apk>. This will likely result in a build without sound!!!
UnityEngine.Debug:LogError(Object)
AkBuildPreprocessor:OnPreprocessBuildInternal(BuildTarget, String) (at Assets/Wwise/Editor/WwiseSetupWizard/AkBuildPreprocessor.cs:135)
AkBuildPreprocessor:OnPreprocessBuild(BuildTarget, String) (at Assets/Wwise/Editor/WwiseSetupWizard/AkBuildPreprocessor.cs:165)
UnityEditor.HostView:OnGUI()

 

Miras O. (120 ポイント) General Discussion

回答 1

–2 支持
I've met the same problem. It seems that AkBuildPreprocessor.cs has checked and try to copy the generatedSoundbanks data from your [ProjectName]_WwiseProject. If you put the GeneratedSoundBanks data under your Assets/StreamingAssets/Audio/..  like what i did, then you can modify the code (in AkBuildPreprocessor.cs) "UnityEngine.Debug.LogError("WwiseUnity: Could not find source ...")" into "UnityEngine.Debug.LogWarning(...)" to avoid to interrupt Building process without being no sound.Wwise will also find that and build into your project. Just have a try!
Leon W. (100 ポイント)
Thanks for response, i will try it
First of all thanks for mentioning this solution! Just a little update that maybe can help someone in the future. I've removed the Wwise project from the Unity Project folder, and just copy-pasted the soundbanks as mentioned in this answer. I've got the same errors and I had to modify these 2 scripts to make the build work without problems:

AkBuildPreprocessor.cs AND AkBasePathGetter.cs

In both of them just change the LogErrorFormat() call to LogWarningFormat() in the lines showed in Unity Console.
...