コード例 #1
0
ファイル: SCManager.java プロジェクト: UnderGear/AuRal
 /** Stop all synths other than personal. */
 public void stopAllOutsideAudio() {
   Collection<GeoSynth> places = owner.getAuraManager().getDestinations().values();
   for (GeoSynth place : places) {
     if (place.play == true) {
       stopAudio(place.index);
       place.play = false;
     }
   }
 }