Example #1
0
 public void Pause()
 {
     if (Pool != null)
     {
         Pool.AutoPause();
     }
 }
Example #2
0
        // 音声停止
        public void PlayStop()
        {
            if (mSoundPool != null)
            {
                mSoundPool.AutoPause();
            }

            // マナーモード/音量を元の状態に戻す
//            RestoreSilentMode(vpContext);
        }
Example #3
0
 public void DeactivateAudioSession()
 {
     _soundPool.AutoPause();
     _backgroundMusic.Pause();
 }
Example #4
0
 internal static void PauseAll()
 {
     s_soundPool.AutoPause();
 }