每当我开始我的pygame游戏时,我都会收到此错误

时间:2015-05-09 01:41:28

标签: python events int pygame callable

我一直关注如何在pygame中制作游戏的youtube系列,我一直收到有关QUIT事件的错误,我不知道如何修复它。

这是错误:

Traceback (most recent call last):
  File "C:/Users/Brady/Desktop/Python Programs/Climber.py", line 31, in <module>
    if event.type == pygame.QUIT():
TypeError: 'int' object is not callable

以下是代码:

#Imports

import pygame
import sys
import random
import cx_Freeze

#Variables

playerhealth = 100

black = (0, 0, 0)
white = (255, 255, 255)
red = (255, 0, 0)
green = (0 ,255, 0)

#Functions



#Initialization

pygame.init()
gamedisplay = pygame.display.set_mode((800, 800))
pygame.display.set_caption("Climber")

#Game Loop

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

    gamedisplay.fill(white)
    pygame.display.update()

请帮我解决此错误以及代码中的任何其他错误。

1 个答案:

答案 0 :(得分:2)

使用pygame.QUIT。它是一个整数常量而不是函数。

e.g

if event.type == pygame.QUIT: