图像不会显示在窗口中

时间:2017-09-22 15:56:57

标签: python pygame

当我运行以下内容时,根据Richard的“快速游戏开发”教程 - 教程:

>>> import pygame
>>> from pygame.locals import *
>>> screen = pygame.display.set_mode((1024,768),DOUBLEBUF)
>>> pygame.display.flip()
>>> car = pygame.image.load('pics/car.png')
>>> car
<Surface(501x737x32 SW)>
>>> screen.blit(car, (50,100))
<rect(50, 100, 501, 668)>
>>> pygame.display.flip()
>>> car
<Surface(501x737x32 SW)>
>>> car==None
False

我的窗口上没有显示图像。我无法弄清楚为什么我只遵循说明。

我在Mac OSX上使用python 3.6.2,我已经用pip安装了pygame。

编辑:我跑了>>> pygame.display.update()但仍然无法显示。

0 个答案:

没有答案