Version

menu_open

Dead game object ID used in function ... This object was unregistered with AK::SoundEngine::UnregisterGameObj some time prior this call.

This error occurs when an API function requiring a Game Object ID is called with an unrecognized ID. The name of the function is provided for reference with the game code. The Game Object was known at some point in the past and its old name is displayed in the Game Object column. The lifetime of a Game Object starts with AK::SoundEngine::RegisterGameObj and stops with AK::SoundEngine::UnregisterGameObj. If the function call was made after those calls, it will result in this error.

Note that it is legal to have a call sequence such as:
AK::SoundEngine::RegisterGameObj(MyGameObjID);
AK::SoundEngine::PostEvent("Play_MySound", MyGameObjID);
AK::SoundEngine::UnregisterGameObj(MyGameObjID);

[Note]Unity Users

The lifetime of a Wwise Game Object follows the lifetime of the AkGameObj component.

Probable causes:

  • The Game Object was unregistered prior to the function call.

  • Unity Users: The "Script Execution Order" may be wrong, causing one of the situations above.

Recommended resolution steps:

  • Enable API Calls in the Profiler Settings. Then reproduce your scenario. In the Capture Log, the faulty call with all its parameters should appear just before the error.

  • Verify the lifetime of the Game Object in the Game Object 3D Viewer. Take note of the time stamps to compare with the Capture Log.

  • Change the order of function calls so they are between the related RegisterGameObj and UnregisterGameObj.

  • Unity Users: Check the "Script Execution Order" in Unity.


Was this page helpful?

Need Support?

Questions? Problems? Need more info? Contact us, and we can help!

Visit our Support page

Tell us about your project. We're here to help.

Register your project and we'll help you get started with no strings attached!

Get started with Wwise