Hi,
Unfortunately, it is not possible to add a snapshot to a listener. Listeners do not have their own signal chain, rather they are used to calculate positioning for 3D sounds. You can read more about them here: FMOD Studio | Glossary - Listener .
Alternate solutions may be:
Occlusion in Unity and Unreal are achieved in the same way: Define a specific parameter for your events that will be used to control events’ occlusion behavior, build occlusion behavior into all the events you want to be occlude-able by using that parameter to automate effect properties or trigger instruments, use ray casting within your game engine to calculate the values to which that parameter should be set, and the the parameter’s value accordingly.
Unreal differs from Unity only in that i…
Hello everyone!
I have a problem with audio occlusion in Unity and FMOD. It just doesn’t work.
I am inside a hut, with a radio, and I want the radio music to be cut off on the other side of the wall. But you can hear it currently clear as day.
Here is the script I’ve been using:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class OcclusionScript : MonoBehaviour
{
private Transform m_MyTrans;
private FMODUnity.StudioEventEmitter m_Sourc…
If I have misunderstood the issue, please let me know.