对python / pygame来说非常新,并且正在观看有关YT的一些教程。 https://www.youtube.com/watch?v=P8bx4nits-o< ---这个具体,我遇到了一个问题。我试图在视频中制作白色背景,但我不能。我不知道哪里出错了。
/var/log/apache/
[IMG] http://i66.tinypic.com/20swspu.png[/IMG]
如果你能帮助我,我真的很感激! 谢谢!
答案 0 :(得分:1)
您需要缩进才能将fill
和update
置于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