Questions et réponses de la communauté

Bienvenue sur le forum de questions et réponses d'Audiokinetic, propulsé par la communauté. C'est l'endroit où les utilisateurs de Wwise et Strata s'entraident. Pour obtenir une aide directe de notre équipe, veuillez utiliser la page « Tickets de soutien ». Pour signaler un bug, utilisez l'option Bug Report dans l'Audiokinetic Launcher. (Veuillez noter que les rapports de bug soumis au forum questions-réponses seront rejetés. L'utilisation de notre système de rapport de bug dédié garantit que votre rapport est vu par les bonnes personnes et a les meilleures chances d'être corrigé.)

Pour obtenir rapidement les meilleures réponses, suivez ces conseils lorsque vous posez une question :

  • Soyez précis : qu'essayez-vous de réaliser ou quel est le problème spécifique que vous rencontrez ?
  • Pensez à inclure les détails importants : incluez des détails tels que les versions de Wwise et du moteur de jeu, le système d'exploitation, etc.
  • Expliquez ce que vous avez essayé de faire : indiquez aux autres les mesures que vous avez déjà prises pour essayer de résoudre le problème.
  • Concentrez-vous sur les faits : décrivez les aspects techniques de votre problème. Se concentrer sur le problème aide les autres personnes à trouver rapidement une solution.

+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?
dans General Discussion par Jeff S. (150 points)

1 Réponse

+1 vote
 
Meilleure réponse
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.
par Bernard R. (Audiokinetic) (35.8k points)
sélectionné par 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.
...