We find ourselves needing a way of pausing and later resuming all sounds currently playing on an AkComponent so we can silence an object by deactivating it.
I was hoping there was a method in the API for doing this per game object, but it seems there isn't. AkComponents don't keep a list of playing IDs so we can't pause all the sounds individually. Even unregistering the game object doesn't stop the sounds (and even if that did work I suspect that they wouldn't start again when we re-registered it).
We could remove the listener, but that wouldn't actually pause the sounds, just mute them.
Have other people had this issue? How did you deal with it?