“Pygame renuncia” Código de respuesta

Pygame renuncia

for event in pygame.event.get():
  if event.type == pygame.QUIT:
    pygame.quit()
Vast Vulture

Cómo hacerlo para que se cierre la ventana de Pygame

running = True
while running:
  for event in pygame.event.get():
    if event.type == pygame.QUIT:
      running = False
    if running == False:
      pygame.quit()
Real Reindeer

Salir de un programa Pygame

running = Truewhile running:  for event in pygame.event.get():    if event.type == pygame.QUIT:      running = False
Bloody Bird

Respuestas similares a “Pygame renuncia”

Preguntas similares a “Pygame renuncia”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código