using UnityEngine; using System; namespace Photon.Voice.Unity { public class AudioOutCapture : MonoBehaviour { public event Action OnAudioFrame; void OnAudioFilterRead(float[] frame, int channels) { if (OnAudioFrame != null) { OnAudioFrame(frame, channels); } } } }