如何在记忆游戏中添加计时器?

时间:2019-09-23 22:41:25

标签: python timer

如果我想在游戏中添加计时器。我希望它从游戏开始到结束都显示在屏幕上,我应该添加什么代码?在哪里添加代码?

这是游戏,我想我应该在第48行添加其他代码,即“ def main()”。 http://inventwithpython.com/pygame/chapter3.html

def main():
    global FPSCLOCK, DISPLAYSURF
    pygame.init()
    FPSCLOCK = pygame.time.Clock()
    DISPLAYSURF = pygame.display.set_mode((WINDOWWIDTH, WINDOWHEIGHT))

1 个答案:

答案 0 :(得分:0)

您可以使用Python的clock()方法创建计时器。