Commit 7a774a8d by BellCodeEditor

save project

parent 4f99c192
Showing with 3 additions and 3 deletions
...@@ -33,13 +33,13 @@ while True: ...@@ -33,13 +33,13 @@ while True:
if volume<0: if volume<0:
volume=0 volume=0
pygame.mixer.music.set_volume(volume) pygame.mixer.music.set_volume(volume)
if event.type == locals.MOUSBUTTONDOWN: if event.type == locals.MOUSEBUTTONDOWN:
click += 1 click += 1
if click % 2 == 0: if click % 2 == 0:
play_button = stop_ing play_button = stop_img
pygame.mixer.music.unpause() pygame.mixer.music.unpause()
else: else:
play_button = play_ing play_button = play_img
pygame.mixer.music.pause() pygame.mixer.music.pause()
if pygame.mixer.music.get_busy() == False: if pygame.mixer.music.get_busy() == False:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment