Commit 8bfb12f9 by BellCodeEditor

save project

parent 9afe43ca
Showing with 2 additions and 1 deletions
import pygame import pygame
from pygame import locals from pygame import locals
import os
pygame.init() # 初始化 pygame.init() # 初始化
# 创建窗口 # 创建窗口
screen = pygame.display.set_mode((640, 480)) screen = pygame.display.set_mode((640, 480))
...@@ -61,6 +61,7 @@ while True: ...@@ -61,6 +61,7 @@ while True:
num+=1 num+=1
if num>len(filelist)-1: if num>len(filelist)-1:
num=0 num=0
print(num)
pygame.mixer.music.load(path+"\\"+music_list[num]) pygame.mixer.music.load(path+"\\"+music_list[num])
pygame.mixer.music.play() 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