“Pygame zrezygnuj” Kod odpowiedzi

Pygame zrezygnuj

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

Jak to zrobić, aby okno Pygame zamknęło się

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

Wyjdź z programu Pygame

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

Odpowiedzi podobne do “Pygame zrezygnuj”

Pytania podobne do “Pygame zrezygnuj”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu