gameDisplay.fill(white)NameError:未定义名称“white”

时间:2017-01-28 11:32:19

标签: python python-3.x pygame

我收到以下错误:

  

追踪(最近的呼叫最后):
   文件“D:\ ninja_car.py”,第32行,中    gameDisplay.fill(白色)
  NameError:名称'white'未定义

我的代码:

grpc

这是什么问题?我正在使用Python 3.4。尝试将背景设置为白色,但它会出现错误。

1 个答案:

答案 0 :(得分:1)

我没有看到变量white的任何实例,所以它会给你一个错误。添加此代码:
white = (255, 255, 255)到你定义变量的地方。

以下是完整代码:

import pygame

pygame.init()

display_width = 800
display_height = 600

white = (255, 255, 255) # Here is the new code!

gameDisplay = pygame.display.set_mode((display_width,display_height))
pygame.display.set_caption('Ninja Game')
clock = pygame.time.Clock()

carImg = pygame.image.load('car.png')

def car(x,y):
    gameDisplay.blit(carImg,(x,y))


x = (display_width * 0.45)
y = (display_height * 0.8)


crashed = False

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

     gameDisplay.fill(white)
     car(x,y)

    pygame.display.update()
    clock.tick(60)

pygame.quit()
quit()