protected void Awake()
 {
     if (_instance != null)
     {
         throw new Exception("Tentative de création d'une autre instance de AudioEmitterManager alors que c'est un singleton.");
     }
     _instance = this;
 }
 protected void OnDestroy()
 {
     _instance = null;
 }