Pygame programs hanging on exit

前端 未结 5 1456
野趣味
野趣味 2021-01-02 07:11

I\'m tinkering around with pygame right now, and it seems like all the little programs that I make with it hang when I try to close them.

Take the following code, fo

5条回答
  •  礼貌的吻别
    2021-01-02 07:30

    I had the same problem, but solved it by doing the following:

    try:
       while True:
          for event in pygame.event.get():
             if event.type==QUIT or pygame.key.get_pressed()[K_ESCAPE]:
                pygame.quit()
                break
    finally:
       pygame.quit()
    

提交回复
热议问题