コミュニティQ&A

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

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

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

+1 支持
We're currently in the process of structuring our Wwise project to work with our DLC plan.  We already have media and structures being separated out into their individual banks in order to be downloaded separately.  However, the problem that we have run into is that all RTPC and switch data is being stored in the init sound bank.  It won't work for us to simply have a new copy of init.bnk in each DLC pack, since our packs are all modular, there may be sound added in a DLC that expands upon a switch we're using at launch.

Is there a way to separate out this type of switch information to make init.bnk extensible?  Or are there other best-practices for enabling this type of scenario?
Jeff S. (150 ポイント) General Discussion

回答 1

+1 支持
 
ベストアンサー
For that scenario, you will need to make a single Init.bnk file that you will provide as a an update/patch to your game main code for all of your users.  This will be the new Init.bnk that supports all DLC available.  It is basically a cummulative Init.bnk.  Each time you release a new DLC, you will need to provide an update will the new version of Init.bnk.

Then, each of the DLC will contain its own bnk files (but not the Init.bnk) that can be added independently, and each DLC will need to depend on the Init.bnk to be at the correct version.
Bernard R. (Audiokinetic) (35.8k ポイント)
Jeff S. 選択
Hello,

I am actually working on the same thing right now. And seeing how fresh is this post I ask my question here.

In the situation where we have a new Init bank to load for the DLC but the main game Init bank was loaded. We need to obviously unload the Init bank of the main game, then reload the one from the DLC.

But do we need to shutdown the engine ? Reload All Banks ?

Can we simply unload/reload an Init bank on the fly ?

Thank you
You don't need to shutdown the engine, but you should unload all banks before doing it.
...