8384858687888990919293
if (myApp.getUserSettings().isMusicMuted()) { return; } toPlay.play(); } else { if (myApp.getUserSettings().isSoundFXMuted()) { return; }
159160161162163164165166167168169
if (isInitialized()) { if (playState == PlayState.Paused) { for (int i = 0; i < cinematicEvents.size(); i++) { CinematicEvent ce = cinematicEvents.get(i); if (ce.getPlayState() == PlayState.Paused) { ce.play(); } } } } }