@@ -151,6 +151,15 @@ class Manager {
channels.stop();
}
+ public function stopAllNotLooping() {
+ var c = channels;
+ while( c != null ) {
+ var n = c.next;
+ if( !c.loop ) c.stop();
+ c = n;
+ }
+
/**
Returns iterator with all active instances of a Sound at the call time.
**/