Running a project with UE4. Everytime I create a mixer snapshot and build the banks, I get this error.
Fatal error: [File:D:/Build/++UE4/Sync/Engine/Source/Runtime/CoreUObject/Private/UObject/UObjectGlobals.cpp] [Line: 2381] Objects have the same fully qualified name but different paths. New Object: FMODSnapshotReverb /Game/FMOD/Snapshots/New_Snapshot.New_Snapshot Existing Object: FMODSnapshot /Game/FMOD/Snapshots/New_Snapshot.New_Snapshot
Any ideas? It only happens with mixer snapshots, everything else runs fine
Iâm using UE 4.26 Chaos and Fmod Studio 2.02.04.
I did have issues earlier with duplicates of the Fmod integration in Unreal, so that might be a possible answer. But in my current project I donât have any snapshots. Everytime I make a new snapshot UE crashes, no matter what the name of the snapshot is.
I have not been able to reproduce this issue with these versions. Perhaps try deleting FMODStudio from your projectâs plugin folder, and replace it with a fresh copy of 2.02.04. Then open your FMOD and Unreal projects and run âHelp>Validate FMODâ to make sure everything is setup correctly.
I tried deleting FMOD Studio from my plugin folder as well as trying to remove everything Fmod-related to the project, but still no luck. The error always reappears when I create a snapshot. I have tried to rename it differently, putting it in groups, creating blending or overriding snapshots but still the same results. Got any more ideas by any chance?
This is the full error Iâm getting
`Fatal error: [File:D:/Build/++UE4/Sync/Engine/Source/Runtime/CoreUObject/Private/UObject/UObjectGlobals.cpp] [Line: 2381] Objects have the same fully qualified name but different paths. New Object: FMODSnapshotReverb /Game/FMOD/Snapshots/Group/BlendingSnapshot.BlendingSnapshot Existing Object: FMODSnapshot /Game/FMOD/Snapshots/Group/BlendingSnapshot.BlendingSnapshot
Another idea would be that there is some corrupted file in the content directory, perhaps try deleting everything in Content/FMOD and re-validate FMOD inside the UE editor.
If that doesnât work I think I am going to need a reproduction- if you could please upload an FMOD Studio project and UE4 project to your FMOD Profile then I will take a closer look. You can strip it back as much as you like, I think just a blank map and blank FMOD project should be enough to reproduce this issue.
Not sure if this is any help but I ran into this the other day. I deleted the â/â on the end of the ContentBrowserPrefix in DefaultEngine.ini and started seeing the same error.
[/Script/FMODStudio.FMODSettings]
ContentBrowserPrefix=/Game/FMOD <-- BAD
ContentBrowserPrefix=/Game/FMOD/ <-- GOOD
When FFMODAssetBuilder::CreateAsset runs, the replace on the ReverbPackagePath fails silently as itâs looking for â/Game/FMODSnapshotsâ and just returns the unmodified Outer Path. It then tries to create the reverb asset with the same path as the snapshot asset.