1

当我想进入游戏结束屏幕时,我遇到了这个问题。

Traceback (most recent call last):
  File "C:\Users\MO\Desktop\Twerk\ballbounce_changed.py", line 215, in <module>
   game()
File "C:\Users\MO\Desktop\Twerk\ballbounce_changed.py", line 191, in game
  text("Game Over",30,white,300)
TypeError: 'pygame.Surface' object is not callable

这是存在屏幕的代码部分:

while finish == True:
 screen.blit(menu,[0,0])
 text("Game Over",30,white,300)
 text("Instructions",310,white)
 text("-----------------------------------------------------",320,white)
 text("Avoid the the enemies",340,white)
 text("Last as long as you can!",360,white)
 text("Press space to start",420,white)

# display.update()
pygame.display.update()

 for event in pygame.event.get():
 if event.type == pygame.QUIT:
   repeat = False

 if event.type == pygame.KEYDOWN:
   if event.key == pygame.K_SPACE:
     repeat = True

if repeat == False:
pygame.quit()

else:
 game()

game()

如果我删除游戏结束屏幕中的文本,它确实有效。我一介绍文字就会收到上述错误消息

(缩进不正确)我在这里有 inden 的完整代码http://pastebin.com/VBkhX4kt

谢谢

4

1 回答 1

1

错误是因为在第 93 行,您覆盖了text从函数到任何 font.render() 返回的变量的绑定。

93: text = font.render('Starting Twerk... ', True, (100,100,100))

因此,稍后,当您调用text(...)它时,它并没有调用您之前定义的函数,而是试图将其text视为可调用的(它不是,因为它现在是一个 pygame.Surface 对象)。

解决方案是更改该行而不是覆盖您的text功能。

于 2012-04-26T01:09:04.130 回答