Hi there,
I had a fully working implementation of FMOD, I would load a bank and find events by path. After trying to implement Addressables and changing the FMOD import type to Asset Bundles, loading banks as Text Assets now gives me null paths.
- Addressables bundles are loaded and the default event emitter works just fine.
- Event linkage is already set to “Path”.
- Tried using RuntimeManager.StudioSystem.lookupPath(guid, out path) with no success.
bank.getEventList(out EventDescription[] eventDescriptions);
// Print every event path
foreach(var e in eventDescriptions)
{
e.getID(out FMOD.GUID guid);
RuntimeManager.StudioSystem.lookupPath(guid, out string path);
Debug.Log(path);
}