Instead of implementing sound changes in one huge go, I'm going to try smaller approaches. Now play_sound has an optional loop parameter set to false by default for backwards compatibility.
This commit is contained in:
parent
3b01662d98
commit
3a478d15d5
10
sound.py
10
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,6 +94,9 @@ class Sound:
|
||||
return None
|
||||
|
||||
sound = self.sounds[soundName]
|
||||
if loop:
|
||||
channel = sound.play(-1)
|
||||
else:
|
||||
channel = sound.play()
|
||||
if channel:
|
||||
channel.set_volume(volume * self.volumeService.get_sfx_volume())
|
||||
@ -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,6 +507,9 @@ def play_sound(sound, volume=1.0):
|
||||
Returns:
|
||||
pygame.mixer.Channel: The channel the sound is playing on
|
||||
"""
|
||||
if loop:
|
||||
channel = sound.play(-1)
|
||||
else:
|
||||
channel = sound.play()
|
||||
if channel:
|
||||
channel.set_volume(volume * volumeService.get_sfx_volume())
|
||||
|
Loading…
x
Reference in New Issue
Block a user