我无法理解我在这里做错了什么

时间:2013-12-24 15:03:00

标签: python pygame

我正在学习Pygame而我无法理解我怎么可能搞砸了。我得到的只是黑屏。

import pygame, sys
from pygame.locals import *

pygame.init()

screen = pygame.display.set_mode((640,360),0,32)
pygame.display.set_caption("Game!")

bg = pygame.image.load("graphics/bg.bmp").convert()
chris = pygame.image.load("graphics/chris.bmp").convert_alpha()

x,y=0,0
movex, movey=0,0

while True:

    for event in pygame.event.get():
        if event.type == QUIT:
            pygame.quit()
            sys.exit()
        if event.type == KEYDOWN:
            if event.key==K_LEFT:
                movex=-1
            elif event.key==K_RIGHT:
                movex=+1
            elif event.key==K_UP:
                movey=-1
            elif event.key==K_DOWN:
                movey=+1
        if event.type==KEYUP:
            if event.key==K_LEFT:
                movex=0
            elif event.key==K_RIGHT:
                movex=0
            elif event.key==K_UP:
                movey=0
            elif event.key==K_DOWN:
                movey=0

    x+=movex
    y+=movey

    screen.blit(bg, (0,0))
    screen.blit(chris, (100, 100))

    pygame.display.update

我从中得到的只是黑屏。 bg.bmp是灰色背景图像,chris是具有相同背景的字符。 这取自NewBostons教程。复制了一切。 我有Python 2.7和Pygame 1.9.2 64bit

请帮助:)

1 个答案:

答案 0 :(得分:7)

此:

pygame.display.update

或许应该是:

pygame.display.update()
#                    ^^

没有括号; python在update上查找display属性,但不再执行任何操作;使用括号,然后调用它找到的属性。