“GUI com pygame” Respostas de código

GUI simples para pygame

# this guy makes a simple explanation and his code in the desciption
https://www.youtube.com/watch?v=0RryiSjpJn0&t=34s
POOP

GUI com pygame

import pygame


 pygame.init()

 pygame.display.set_caption('Quick Start')
 window_surface = pygame.display.set_mode((800, 600))

 background = pygame.Surface((800, 600))
 background.fill(pygame.Color('#000000'))

 is_running = True

 while is_running:

     for event in pygame.event.get():
         if event.type == pygame.QUIT:
             is_running = False

     window_surface.blit(background, (0, 0))

     pygame.display.update()
Spotless Swan

Respostas semelhantes a “GUI com pygame”

Perguntas semelhantes a “GUI com pygame”

Mais respostas relacionadas para “GUI com pygame” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código