using UnityEngine; public class SoundManager : MonoBehaviour { private AudioSource ambiance; private void Awake() { ambiance = GetComponent<AudioSource>(); } }