Commit 61a60af8 by BellCodeEditor

save project

parent 77cfbc8d
Showing with 4 additions and 3 deletions
......@@ -13,7 +13,8 @@ next_img = pygame.image.load('next.png') # 下一曲按钮
logo_img = pygame.image.load('logo.png') # 下一曲按钮
n=-1
ml=[]
f=os.listdir("C:\\Users\\6\\Desktop\\test")
p="C:\\Users\\6\\Desktop\\test\\"
f=os.listdir(p)
# 载入音乐
for i in f:
if f[-4:]==".wav"or f[-4:]==".ogg":
......@@ -56,9 +57,9 @@ while True:
if pygame.mixer.music.get_busy() == False:
n+=1
if n>len(ml)-1:
if n>len(f)-1:
n=0
pygame.mixer.music.load("C:\\Users\\6\\Desktop\\test\\"+ml[n])
pygame.mixer.music.load(p+"\\"+ml[n])
pygame.mixer.music.play()
# 绘制画面
......
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