コード例 #1
0
ファイル: AudioEngine.cs プロジェクト: h78hy78yhoi8j/xenko
 internal void UnregisterSound(SoundBase disposedSound)
 {
     lock (notDisposedSounds)
     {
         if (!notDisposedSounds.Remove(disposedSound))
             throw new AudioSystemInternalException("Try to remove a disposed sound not in the list of registered sounds.");
     }
 }
コード例 #2
0
ファイル: AudioEngine.cs プロジェクト: h78hy78yhoi8j/xenko
 internal void RegisterSound(SoundBase newSound)
 {
     lock (notDisposedSounds)
     {
         notDisposedSounds.Add(newSound);
     }
 }