using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// Simple implementation of a MonoBehaviour that is able to request a sound being played by the AudioManager. /// It fires an event on an AudioCueEventSO which acts as a channel, that the AudioManager will pick up and play. /// public class AudioCue : MonoBehaviour { [SerializeField] private AudioCueSO _audioCue = default; [SerializeField] private AudioCueEventChannelSO _audioCueEventChannel = default; [SerializeField] private AudioConfigurationSO _audioConfiguration = default; public void PlayAudioCue() { _audioCueEventChannel.RaiseEvent(_audioCue, _audioConfiguration, transform.position); } }