字体显示期间的Pygame问题

时间:2018-04-30 12:16:32

标签: python pygame

当我尝试显示我的字体时(当英雄死亡时)我遇到了问题,但没有显示任何内容。请帮我找出问题的来源。

if hero.life == 0 or hero.life < 0:
    hero.image =  pygame.image.load("images/grave2.png").convert_alpha()
    text_end = font_end.render("GAME OVER",1,(255,255,255))
    fenetre.blit(fond_jeu, (0,0))
    fenetre.blit(text_end, (30, 30))
    hero.alive = 0

1 个答案:

答案 0 :(得分:0)

font_end instanciation在哪里?有点像

texte = "Mon texte à afficher"
font_end = pygame.font.SysFont("freesansbold",22,bold=False,italic=False)
text = font_end.render(texte, True)

对于blit:

mySurface.blit(text,(x, y))
pygame.display.update()