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
I'm trying to get music to continue playing between levels.

Is there a recommended way of doing this with Wwise and UE4? Currently all AkComponents are destroyed on changing levels. Is there something else I should be using?
in General Discussion by Ben H. (250 points)

2 Answers

0 votes
Hi you need a prog for you problem.

You need to find a way to modify your ak event and turn it to persistent. With this option your music will continue to playback between all your levels.

After that uncheck auto load option in your music snk and call your snk in code.
by Jérémy G. (180 points)
0 votes
 
Best answer
In the end the only way we solved this was by creating an Actor that was not owned by the level, so it was not destroyed when we changed maps. We added a listener and emitter onto the actor and set them so they only emitted and listened to each other.

It was a huge pain in the ass.
by Ben H. (250 points)
I am glad we're not the only ones struggling with this.

Rather than creating a global actor (which sounds a bit scary!) I just created a standalone ak game object, with itself as a listener, to achieve the same thing.

However, there was one extra bit of logic necessary to get it to work, which took rather a long time to track down, which is that (with our setup, at least) it is necessary for there to be a spatial audio listener active for audio to be audible. During level transitions there is no spatial audio listener in the default UE4 plugin. I got around this by setting my aforementioned standalone ak game object as the spatial audio listener at the point where the regular spatial audio listener is removed/destroyed.

Hopefully this helps out someone else in the same situation :)
How did you get around the UAkGameObject::AllowAudioPlayback() check?
if your standalone ak game object isn't attached to a world, that should stop it from posting any events.
...