diff --git a/sound.py b/sound.py index e395af1..bf01427 100644 --- a/sound.py +++ b/sound.py @@ -80,7 +80,7 @@ class Sound: except Exception as e: print(f"Error loading sounds: {e}") - def play_sound(self, soundName, volume=1.0): + def play_sound(self, soundName, volume=1.0, loop=False): """Play a sound with current volume settings applied. Args: @@ -94,7 +94,10 @@ class Sound: return None sound = self.sounds[soundName] - channel = sound.play() + if loop: + channel = sound.play(-1) + else: + channel = sound.play() if channel: channel.set_volume(volume * self.volumeService.get_sfx_volume()) return channel @@ -494,7 +497,7 @@ def calculate_volume_and_pan(playerPos, objPos): return volume, left, right -def play_sound(sound, volume=1.0): +def play_sound(sound, volume=1.0, loop=False): """Play a sound with current volume settings applied. Args: @@ -504,7 +507,10 @@ def play_sound(sound, volume=1.0): Returns: pygame.mixer.Channel: The channel the sound is playing on """ - channel = sound.play() + if loop: + channel = sound.play(-1) + else: + channel = sound.play() if channel: channel.set_volume(volume * volumeService.get_sfx_volume()) return channel