That error message indicates that FMOD is trying to destroy a bus, but that there is still an event instance routed into the bus. In theory, this should never happen, as any execution path that destroys a bus should end any event instances routed into it first… Could you describe how your game is handling the level transition? Especially any code that’s involved. It might help us reproduce the bug and work out why it’s happening.
We call Open level from UGameplayStatics, with Absolute being passed in as true.
We have a sperate level for the main menu that is very light, and have the gameplay levels setup to load each sublevel in series, one after the other, to avoid issues we had before with the switch crashing. Once all the levels are loaded we load data from the save file and run some code for the level begin play.
The issue hapens when transitioning from any level to one of the gameplay levels.
I am trying to replicate and get a much more useful log as to when the crash occurs.
Managef to get another replication today but it didn’t contain any more information. I can confirm it was after it had loaded the main level and is about to load the sub levels. I’m trying to get it again with a full debugger attached.