public void StopAmbient(string audioName)
    {
        if (_ambientKey == null)
        {
            return;
        }

        if (_controller.StopInstant(audioName, _ambientKey))
        {
            _ambientKey = null;
        }
    }