about summary refs log tree commit diff homepage
path: root/brutalmaze/misc.py
diff options
context:
space:
mode:
Diffstat (limited to 'brutalmaze/misc.py')
-rw-r--r--brutalmaze/misc.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/brutalmaze/misc.py b/brutalmaze/misc.py
index 92000a4..e5d1016 100644
--- a/brutalmaze/misc.py
+++ b/brutalmaze/misc.py
@@ -93,20 +93,22 @@ def json_rec(directory):
 def play(sound: str, x: float = MIDDLE, y: float = MIDDLE,
          gain: float = 1.0) -> None:
     """Play a sound at the given position."""
-    buffer = Buffer(sound)
-    source = buffer.play()
+    source = Buffer(sound).play()
     source.spatialize = True
-    source.position = x, 0, y
+    source.position = x, -y, 0
     source.gain = gain
     sources.append(source)
 
 
-def clean_sources() -> None:
-    """Destroyed stopped sources."""
+def clean_sources(stopped=True) -> None:
+    """Destroyed stopped sources.
+
+    If stopped is set to False, clean all sources.
+    """
     global sources
     sources, tmp = [], sources
     for source in tmp:
-        if source.playing:
+        if stopped and source.playing:
             sources.append(source)
         else:
             source.destroy()