Permitir cambiar el tamaño de la ventana en PyGame

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:

  1. Importar pygame .
  2. Establezca el título y agregue contenido.
  3. Ejecute pygame.
  4. 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:

  1. Importar pygame .
  2. Forme una pantalla usando el método pygame.display.set_mode() y permita cambiar el tamaño usando pygame.RESIZABLE .
  3. Establezca el título y agregue contenido.
  4. Ejecute pygame.
  5. 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *