编程怎么做游戏 怎么编程游戏( 三 )


复制代码Step4:游戏结束界面
当玩家完成拼图后,需要显示游戏结束界面,和游戏初始界面类似,实现起来都比较简单:
'''显示游戏结束界面'''
def ShowEndInterface(screen, width, height):
screen.fill(cfg.BACKGROUNDCOLOR)
font = pygame.font.Font(cfg.FONTPATH, width//15)
title = font.render('恭喜! 你成功完成了拼图!', True, (233, 150, 122))
rect = title.get_rect()
rect.midtop = (width/2, height/2.5)
screen.blit(title, rect)
pygame.display.update()
while True:
for event in pygame.event.get():
if (event.type == pygame.QUIT) or (event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE):
pygame.quit()
sys.exit()
pygame.display.update()
复制代码
文章到这里就结束了,感谢你的观看
【编程怎么做游戏 怎么编程游戏】(今完)

推荐阅读