En este artículo, aprenderemos cómo permitir cambiar el tamaño de una ventana de PyGame .
Instalación:
Esta biblioteca se puede instalar usando el siguiente comando:
pip install pygame
Ventana normal de PyGame
Enfoque paso a paso:
- Importar pygame .
- Establezca el título y agregue contenido.
- Ejecute pygame.
- Salir de pygame.
A continuación se muestra el programa basado en el enfoque anterior:
Python3
# import package pygame import pygame # Form screen with 400x400 size # with not resizable screen = pygame.display.set_mode((400, 400)) # set title pygame.display.set_caption('Not resizable') # run window running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # quit pygame after closing window pygame.quit()
Producción :
Ventana PyGame redimensionable
Enfoque paso a paso:
- Importar pygame .
- Forme una pantalla usando el método pygame.display.set_mode() y permita cambiar el tamaño usando pygame.RESIZABLE .
- Establezca el título y agregue contenido.
- Ejecute pygame.
- Salir de pygame.
A continuación se muestra el programa basado en el enfoque anterior:
Python3
# import package pygame import pygame # Form screen with 400x400 size # and with resizable screen = pygame.display.set_mode((400, 400), pygame.RESIZABLE) # set title pygame.display.set_caption('Resizable') # run window running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # quit pygame after closing window pygame.quit()
Producción :
Publicación traducida automáticamente
Artículo escrito por deepanshu_rustagi y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA