Answers for "pygame stops running"

3

how to make it so the pygame window will close

running = True
while running:
  for event in pygame.event.get():
    if event.type == pygame.QUIT:
      running = False
    if running == False:
      pygame.quit()
Posted by: Guest on December-21-2019
0

how to initialize pygame

pygame.font.init()
Posted by: Guest on June-16-2020

Code answers related to "pygame stops running"

Python Answers by Framework

Browse Popular Code Answers by Language