Pygame中的Screen.Fill()不会更改屏幕

时间:2018-12-21 01:20:48

标签: python python-3.x pygame

我已经看过许多代码示例,但是我无法确定为什么窗口屏幕没有变为蓝色。

import sys, pygame

pygame.init()

clock = pygame.time.Clock()

size = (1000, 440)
black = (0,0,0)
blue = (0,0,255)
white = (255,255,255)

screen = pygame.display.set_mode(size)
done = False

while not done:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            sys.exit()

    screen.fill(blue)
    pygame.display.update()

我希望屏幕会更改颜色,但是它只是保持默认的灰色。

0 个答案:

没有答案