Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

+1 vote
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?
in General Discussion by Jeff S. (150 points)

1 Answer

+1 vote
 
Best answer
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.
by Bernard R. (Audiokinetic) (35.8k points)
selected by 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.
...