Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

Livestream Beta 2022.1 - Are json files generated by Auto Defined SoundBanks loaded at runtime?

0 votes
Q: Are json files generated by Auto Defined SoundBanks loaded at runtime?
asked Aug 10, 2022 in Beta Feedback by Damian K. (420 points)

1 Answer

+1 vote
This is a good question. No. Not in the final packaged games. Some of its data remains, but the json contents are digested before runtime use.

The json files are loaded in the Unreal Editor, and the information they provide are stored in-memory in parsed structures, so the Editor can have all the information on the current platform's SoundBanks. Whenever you see the Wwise Picker, it actually polls all the information from the WwiseProjectDatabase module, that is a 1:1 in-memory representation of the json themselves.

Then, there is another module, WwiseResourceCooker, that takes the individual information bits from the json files, and creates a binary representation, pre-chewed, of the specified asset. That binary representation is stored in the final .uasset file of your cooked and packaged game (but not the editor uncooked assets). The information itself is very sparse. There are some IDs, file names for the assets stored in Unreal's IO Store, and optional debug name.

This cooked information is what's used to play events and sounds, either in editor, Play-In-Editor, or in the final packaged game.
answered Aug 11, 2022 by Michel D. (510 points)
...