我正在做一個遊戲,當我嘗試加載它說的圖片「無法找到‘image.py’參考‘負荷’」pygame的不可能加載圖片
這是我的代碼:
import pygame
pygame.init()
display_width = 800
display_height = 600
black = (0, 0, 0,)
white = (255, 255, 255)
red = (255, 0, 0)
gameDisplay = pygame.display.set_mode((display_width, display_height))
pygame.display.set_caption('Boat Race')
clock = pygame.time.Clock()
carImg = pygame.image.load('boat.png')
crashed = False
while not crashed:
for event in pygame.event.get():
if event.type == pygame.QUIT:
crashed = True
pygame.display.update()
clock.tick(30)
pygame.quit()
quit()
我已經看到,PyCharm給出了這樣的警告,但沒有錯誤是在執行引發的,是嗎? – PRMoureu