public virtual void OnSceneRemoved(SceneEventArgs sceneE)
 {
     if (SceneRemoved != null)
     {
         SceneRemoved(this, sceneE);
     }
 }
 private void SceneManager_SceneRemoved(SceneManager sender, SceneEventArgs e)
 {
     if (e.Scene is Yugioh_AtemReturns.Scenes.MenuScene)
     {
         EffectManager.GetInstance().Stop(eSoundId.m_menu);
     }
     if (e.Scene is Yugioh_AtemReturns.Scenes.PlayScene)
     {
         EffectManager.GetInstance().Stop(eSoundId.m_duel1);
     }
 }
 private void SceneManager_SceneRemoved(SceneManager sender, SceneEventArgs e)
 {
     if (e.Scene is Yugioh_AtemReturns.Scenes.MenuScene)
         EffectManager.GetInstance().Stop(eSoundId.m_menu);
     if (e.Scene is Yugioh_AtemReturns.Scenes.PlayScene)
         EffectManager.GetInstance().Stop(eSoundId.m_duel1);
 }
 public virtual void OnSceneRemoved(SceneEventArgs sceneE)
 {
     if (SceneRemoved != null)
         SceneRemoved(this, sceneE);
 }