Skip to content

Instantly share code, notes, and snippets.

@lesp
Created September 19, 2014 21:27
Show Gist options
  • Save lesp/e2ab8a553136a4d3b89e to your computer and use it in GitHub Desktop.
Save lesp/e2ab8a553136a4d3b89e to your computer and use it in GitHub Desktop.
Function to play sound
#Function to play sounds
def play_sound(x):
pygame.mixer.music.load(x)
pygame.mixer.music.play(1)
while pygame.mixer.get_busy() == True:
continue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment