Mac下 pygame.image.load不显示图片解决方法

...
...
...
...

pygame.display.update()

# 游戏循环
while True:
""" MAC下解决加载不出背景图卡死问题"""
event = pygame.event.poll()
if event.type == pygame.QUIT:
pygame.quit()
exit()

猜你喜欢

转载自www.cnblogs.com/minost/p/12709929.html