Commit e8c03af1 by BellCodeEditor

save project

parent f7432eb3
Showing with 4 additions and 1 deletions
......@@ -51,9 +51,11 @@ while True:
if click % 2 == 0:
play_button = stop_img
pygame.mixer.music.unpause()
else:
play_button = play_img
pygame.mixer.music.pause()
if x > 420 and x < 520 and y > 350 and y < 400: # 下一曲
num += 1
if num > len(music_list) - 1:
......@@ -88,7 +90,8 @@ while True:
a = pygame.transform.rotate(logo_img,angle)
b = a.get_rect(center=(320,200))
pos=(b[0],b[1])
angle +=0.5
if play_button==stop_img:
angle +=0.5
# 绘制画面
......
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