第一集我就卡住了 screen.blit(background,(0,0))一直报错
import pygameimport sys
import traceback
from pygame.locals import *
pygame.init()
pygame.mixer.init()
bg_size =width, height = 480, 700
screen = pygame.display.set_mode(bg_size)
pygame.display.set_caption("飞机大战 —— FishC Demo")
background = pygame.image.load("./images/background.png").convert()
# 载入游戏音乐
pygame.mixer.music.load("sound/game_music.ogg")
pygame.mixer.music.set_volume(0.2)
bullet_sound = pygame.mixer.Sound("sound/use_bomb.wav")
bullet_sound.set_volume(0.2)
bomb_sound = pygame.mixer.Sound("sound/use_bomb.wav")
bomb_sound.set_volume(0.2)
supply_sound = pygame.mixer.Sound("spund/supply.wav")
supply_sound.set_volume(0.2)
gte_bomb_sound = pygame.mixer.Sound("sound/gte_bomb.wav")
gte_bomb_sound.set_volume(0.2)
get_bullet_sound = pygame.mixer.Sound("sound/get_bullet.wav")
get_bullet_sound.set_volume(0.2)
upgrade_sound = pygame.mixer.Sound("sound/upgrade.wav")
upgrade_sound.set_volume(0.2)
enemy3_fly_sound = pygame.mixer.Sound("sound/enemy3_flying.wav")
enemy3_fly_sound.set_volume(0.2)
enemy1_down_sound = pygame.mixer.Sound("sound/enemy1_down.wav")
enemy1_down_sound.set_volume(0.1)
enemy2_down_sound = pygame.mixer.Sound("sound/enemy2_down.wav")
enemy2_down_sound.set_volum(0.2)
enemy3_down_sound = pygame.mixer.Sound("sound/enemy3_down.wav")
enemy3_down_sound.set_volum(0.5)
me_down_sound = pygame.mixer.Sound("sound/me_down.wav")
me_down_sound.set_volum(0.2)
def main():
pygame.mixer.music.play(-1)
clock = pygame.time.Clock()
running = True
while running:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
screen.blit(background,(0,0))
pygame.display.flip()
clock.tick(60)
if _name_ == "_main_":
try:
main()
except SystemExit:
pass
except:
traceback.print_exc()
pygame.quit()
input()
if __name__ == "__main__": kylin121380 发表于 2020-10-21 21:26
感谢大佬,但是还是报错 应该是我pygame不行我重下一个试试 团战队友看我哭 发表于 2020-10-22 09:26
感谢大佬,但是还是报错
报错发出来 最新版python用什么版本的pygame?{:10_269:} screen.blit(background,(0,0))后边一条红线
Traceback (most recent call last):
File "C:\Users\Administrator\Desktop\python\飞机大战\main.py", line 24, in <module>
gte_bomb_sound = pygame.mixer.Sound("sound/gte_bomb.wav")
FileNotFoundError: No such file or directory.
>>>
这怎么改{:10_269:} 谢谢大佬,我这一集过了{:10_245:}{:10_245:}
页:
[1]