Pygame帮助 - 麻烦的新手

时间:2015-12-16 19:56:02

标签: python pygame

对python / pygame来说非常新,并且正在观看有关YT的一些教程。 https://www.youtube.com/watch?v=P8bx4nits-o< ---这个具体,我遇到了一个问题。我试图在视频中制作白色背景,但我不能。我不知道哪里出错了。

/var/log/apache/

[IMG] http://i66.tinypic.com/20swspu.png[/IMG]

如果你能帮助我,我真的很感激! 谢谢!

1 个答案:

答案 0 :(得分:1)

您需要缩进才能将fillupdate置于while循环内。

while not gameExit:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            gameExit = True

    gameDisplay.fill(white) # indentation
    pygame.display.update() # indentation