“pygame desistir” Respostas de código

pygame desistir

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

Como fazê -lo para que a janela do pygame feche

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

Saia de um programa de pygame

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

Respostas semelhantes a “pygame desistir”

Perguntas semelhantes a “pygame desistir”

Procure respostas de código populares por idioma

Procurar outros idiomas de código