menu
 

La section Questions et réponses de la communauté Audiokinetic est un forum où les utilisateurs de Wwise et de Strata peuvent poser des questions et répondre à celles des autres membres de la communauté. Si vous souhaitez obtenir une réponse de la part de l'équipe de soutien technique d'Audiokinetic, veillez à utiliser le formulaire de Tickets de Soutien.

+2 votes

It seems nearly every time we stop our game while it's running Unity crashes. In the Unity editor there isn't any kind of log containing the reason for the crash, however quitting a build results in the same crash and provides a log that states

 "AkSoundEngine.dll caused an Access Violation (0xc0000005)
  in module AkSoundEngine.dll at 0033:65ed2a8a."

 

I'm not sure what's causing this, everything in game seems to be working fine. We're not getting any errors related to Wwise and everything initializes and runs without issue.

dans General Discussion par Josh D (220 points)

2 Réponses

0 votes
Hello Josh,

Sorry to bring this thread back but me and my team are having this issue pretty constantly. It's the exact same violation and it only happnes to us when we stop Unity's editor run (the play button).

Where you able to solve this? If so, please share how,

Thanks!

Pravus
par Juan F. (200 points)
+1 vote
Hi, we solved this by disabling the "create the wwiseglobal gameobject on every scene" option in wwise plugin settings, then creating a duplicate of the wwiseglobal object, renamed it to wwiseInitializer (the name change is needed since the wwise plugin will delete every wwiseglobal gameobject it encounters because of the previous changed setting) and putting our new prefab manually on every scene.

The problem is probably because strangely the unique instance and DontDestroyOnLoad logic in the AkInitializer is not working correctly on our Unity 5.4.0. So when we start the game on a scene with the wwiseglobal object and load a new scene, the AkInitializer is probably trying to initialize wwise again and reserve memory and everything again thus triggering the access violation error.

I hope this helps someone with our same problem, we've had it for months now.
par Juan F. (200 points)
...