Hello, need help, maybe I am doing smth wrong, but I’ve not found how to do it right.
Okay, I happily used FMOD without plugins with this simple code: FMODaudio
Then I decided to try Resonance Audio: read tutorial, did necessary stuff in Studio, copy-pasted resonanceaudio.dll next to fmod.dll and fmodstudio.dll, and put
fmodSystem.loadPlugin("libs\\resonanceaudio.dll", out var handle)"
at line 22 so it would look like this: FMODaudioPlugins
In result I have got infinity while(true) loop because
masterBank.getLoadingState(out var loadingState)
returns UNLOADED at every cycle, but
masterBankStrings.getLoadingState(out var stringsState)
returns LOADED .
I have not received any additional errors.
If I remove code, that checks loadingState (basicly whole loop), I get ERR_EVENT_NOTFOUND in
system.getEvent(path, out var description).
I use FMOD 2.01.05 and this is my project: FMOD_Project
Please tell me what I am doing wrong.
Thanks