UE4 - Sound occlusion with walls

Hello,

I want to setup an occlusion system to filter out sounds based on being in the room that is producing audio vs. being outside of the room. I have a sound attached to a object in the room, and I feel like I need to do a bit of Blueprint work. But if anyone knows a good way to set this up, please let me know,

Thanks,
:slight_smile:

So, annoyingly, occlusion is included with UE4’s tools but I don’t believe we can use them through Fmod.

However, before this was included, I did this by performing a line trace between the sound source and the player, getting any collision, measuring it and working that into the volume/frequency offset.

Ok awesome. Any references for doing either of these? Is the ray tracing way good if I have many sound sources in a level? Where can I setup occlusion within ue4?

An Occlusion system is built into the FMOD UE4 Integration: https://fmod.com/resources/documentation-ue4?version=2.0&page=user-guide.html#occlusion

Although it sounds like you want to use Ambient Zones: https://fmod.com/resources/documentation-ue4?version=2.0&page=user-guide.html#ambient-zone-settings

Does the object that I want to have the sound attached need to use the FMOD audio components ‘Event’ field, or can i use ‘PlayEventAtLocation’ in Blueprint? And do i need to set the value of ‘Occlusion’ parameter anywhere? I set it up according to the documentation but nothing is happening.

Only FMODAudioComponents are able to use Occlusion in this way. If you have set the occlusion parameter in the Settings and made sure that occlusion is enabled on the component, then the Integration will take care of setting it for you. Also check that the trace channel suits your requirement.