Pygame基础知识不起作用

时间:2013-06-08 20:41:13

标签: python pygame

你好我正在尝试为新波士顿学习Pygame而且我很难在第一个leason工作时每次打开它都会崩溃并且我已经尝试了eveything并且我无法让它工作任何帮助会很棒

这是我的代码

bif = 'bg.jpg'
mif = 'ball.png'

import pygame, sys
from pygame.locals import *

pygame.init()
screen = pygame.display.set_mode((640,360),0,32)

background = pygame.image.load(bif).convert()
mouse_c = pygame.image.load(mif).convert_alpha()
while true:
    for event in pygame.event.get():
        if event.type == QUIT: 
            pygame.quit()
            sys.exit()
    screen.blit(background, (0,0))
    x,y = pygame.mouse.get_pos()
    x -= mouse_c.get_width()/2
    y -= mouse_c.get_hight()/2
    screen.blit(mouse_c,(x,y))
    pygame.display.update()

1 个答案:

答案 0 :(得分:2)

你所有true的拳头,而循环需要True大写,这将启动你的游戏循环

第二个height拼写错误

第20行应该是:

y -= mouse_c.get_height()/2 

然后它应该完美地运作