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.

0 votes
Hi ! We are making a project in CryEngine, and we updated the CryWwise plugin developed by fellow students to Wwise 2013.2.2.

CryWwise builds a new DLL around AkSoundEngine.dll that is called by CryGame.dll, itself called by the CryEngine editor and launcher files. It successfully plays sounds and uses positioning information.

When the game is launched, everything works (including effects on bus) when the Profiler is connected, with the right Wwise project in it.

When the Profiler is not active, however, or when it's another project, the effects on busses don't work anymore (they seem to work sometimes when called directly on a sound object). There doesn't seem to be any bus in the profiler except the Master Audio Bus, the effects on busses aren't there, the 3D attenuation isn't working. The only errors in the profiler in this case are "Plug-in not registered: Unknown"

We are unable to determine the source of the problem since RegisterAllPlugins() returns true.

So, we were wondering what the profiler does that enables effects on busses? Is there something special to do to load the bus hierarchy?
in General Discussion by Michèle K. (140 points)

1 Answer

0 votes
We figured it out :
 
In Wwise 2013.2.2, contrary to what is described in the documentation, loading a bank doesn't return AK_FAIL when the required plug-ins weren't properly registered.
In particular, when the following (wrong) process is applied :
1) load Init.bnk
2) register plug-ins
3) load another bank
steps 1 and 3 do not notify of failure but the plug-ins will not work either.

 

by Michèle K. (140 points)
...