“GUI con Pygame” Código de respuesta

GUI simple 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 con 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

Respuestas similares a “GUI con Pygame”

Preguntas similares a “GUI con Pygame”

Más respuestas relacionadas con “GUI con Pygame” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código