|  | 
 
| 
今天凑齐素材想要尝试飞机大战的制作,但是在加载音频的时候老是出错:
x
马上注册,结交更多好友,享用更多功能^_^您需要 登录 才可以下载或查看,没有账号?立即注册  bullet_sound = pygame.mixer.Sound('sound/bullet.wav')
 pygame.error: Unable to open file 'sound/bullet.wav'
 
 在网上找资料尝试过物理地址、初始化之类的方法都没有作业!
 有好心的鱼友能帮我看看的吗?万分感谢!!!
 
 
 这是代码:
 
 import pygame
 import sys
 import traceback
 from pygame.locals import *
 
 pygame.init()
 pygame.mixer.init()
 
 bg_size = width,height = 480,852
 screen  = pygame.display.set_mode(bg_size)
 pygame.display.set_caption('飞机大战')
 
 background = pygame.image.load('image/background.png').convert
 
 #载入游戏的音乐
 pygame.mixer.music.load('sound/game_music.mp3')
 pygame.mixer.music.set_volume(0.2)
 bullet_sound = pygame.mixer.Sound('sound/bullet.wav')
 bullet_sound.set_volume(0.2)
 bomb_sound = pygame.mixer.Sound('sound/use_bomb.mp3')
 bomb_sound.set_volume(0.2)
 supply_sound = pygame.mixer.Sound('sound/supply.wav')
 supply_sound.set_volume(0.2)
 get_bomb_sound = pygame.mixer.Sound('sound/get_bomb.mp3')
 get_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/get_double_laser.mp3')
 upgrade_sound.set_volume(0.2)
 enemy3_fly_sound = pygame.mixer.Sound('sound/big_spaceship_flying.mp3')
 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_volume(0.2)
 enemy3_down_sound = pygame.mixer.Sound('sound/enemy3_down.mp3')
 enemy3_down_sound.set_volume(0.5)
 me_down_sound = pygame.mixer.Sound('sound/out_porp.mp3')
 me_down_sound.set_volume(0.2)
 
 
 def main():
 pygame.mixer.music.play(-1)
 
 running = True
 
 clock = pygame.time.Clock()
 
 while True:
 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()
 
 
 | 
 |