I’m a beginner and still getting lost every day… I could really use some help!
We have a large fountain in our game level. I added an FMOD Audio Component to its Blueprint and enabled Occlusion. However, the sound already seems occluded, as if it’s being played from inside the fountain, making it sound muffled or too quiet. (I tested occlusion with a simple Cube using the same method, and it worked fine there—no issue.)
So, I tried applying occlusion via Blueprint nodes instead, but I’m not sure how to properly set up the node connections. What could I be doing wrong?
Any advice or sample Blueprint setups would be greatly appreciated!
It’s difficult for me to diagnose this without more information. My recommendation would be to check the value of the occlusion parameter for the event instance in question to see whether it’s what you’d expect. You could do this at run time in UE using Blueprints or the API, or by recording a profiler session in FMOD Studio via live update and selecting the instance in the lifespans view. The lifespans view can be selected from the transport bar:
Assuming your occlusion settings, parameter name, etc. are all set up properly, the issue here would be Play Event Attached isn’t actually causing the FMODAudio Component to play - it’s creating a separate event instance, and attaching it to the FMODAudio Component.
Instead, you’ll want to set the event for the FMODAudio Component if you haven’t already, and then play it, which might look something like this: