Fmod 2.02.22
Unity 2022.3.5.f1
Tried to use live update function. The error I get you can see on screenshot.
Fmod 2.02.22
Unity 2022.3.5.f1
Tried to use live update function. The error I get you can see on screenshot.
I read similar topic and saw this answer:
To start with it might be worth checking that nothing else is sitting on port 9264.
Can you please try the following:
- Close Unity and FMOD Studio
- Open a windows command propmt
- Run the following command to enumerate processes listening on port 9264
netstat -a -n -o | find "9264"
- If that yields any results, for example:
C:\Users\User>netstat -a -n -o | find "9264" TCP 0.0.0.0:9264 0.0.0.0:0 LISTENING 7688 TCP 127.0.0.1:9264 127.0.0.1:64289 ESTABLISHED 7688 TCP 127.0.0.1:64289 127.0.0.1:9264 ESTABLISHED 13804
then kill those processes:
taskkill /pid 7688 /f taskkill /pid 13804 /f
After closing FMOD and Unity i tried to do this command but there’s no results
C:\Users\Yriy>netstat -a -n -o | find "9264"
C:\Users\Yriy>
Hi,
Thank you for the information.
Can you please try:
Live Update
Retry in Background
Live update should now connect:
Hope this helps!
Unfortunatelty, it’s not working. The label is only blinking.
Changing audio driver to Windows Sonic fixed my problem.
Thank you for sharing the solution.