我有一個pygame的問題。我想知道我怎麼能像我的遊戲中的歌曲的「開/關」按鈕。如何製作「開關」音樂按鈕?
if event.type == MOUSEBUTTONDOWN:
if event.pos[0] > 35 and event.pos[0] < 105 and event.pos[1] > 460 and event.pos[1] < 565:
if pygame.mixer.music.play():
pygame.mixer.music.pause()
elif pygame.mixer.music.pause():
pygame.mixer.music.unpause()
在此先感謝,對不起我的英語不好。
你應該解釋一下什麼是你的代碼的問題。它不工作?它會引發錯誤? – pmoleri