Commit 53b2d4a8 by BellCodeEditor

auto save

parent da9ee3fd
Showing with 10 additions and 5 deletions
......@@ -15,8 +15,7 @@ pygame.mixer.music.load('test.wav')
pygame.mixer.music.play()
volume = 0.2
pygame.mixer.music.set_volume(volume)
mouse = 0
start = stop_img
click = 0
while True:
......@@ -24,16 +23,22 @@ while True:
if event.type == locals.QUIT:
exit()
if event.type == locals.KEYDOWN:
if event.key == K_UP:
if event.key == locals.K_UP:
volume += 0.1
if event.key == K_DOWN:
if event.key == locals.K_DOWN:
volume -= 0.1
if volume > 1:
volume = 1
if volume < 0:
volume = 0
if event.type == locals.MOUSEBUTTONDOWN:
mouse += 1
if pygame.mixer.music.get_busy() == False:
pygame.mixer.music.play()
if mouse%2 == 1:
continue
else:
pygame.mixer.music.play()
pygame.mixer.music.set_volume(volume)
# 绘制画面
screen.blit(bg_img, (0, 0)) # 填充背景
......
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