“Cómo hacer una pantalla en Pygame” Código de respuesta

Ejemplo de pantalla de Python Pygame

import pygame
background_colour = (255,255,255)
(width, height) = (300, 200)
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption('Tutorial 1')
screen.fill(background_colour)
pygame.display.flip()
running = True
while running:
  for event in pygame.event.get():
    if event.type == pygame.QUIT:
      running = False
Depressed Dog

Cómo hacer una pantalla en Pygame

so here i will be giving the most basic and most easy method

import pygame
# initialize pygame
pygame.init()
screen = pygame.display.set_mode((1370, 710))
#1370,710 gives a full screen
Coder's helper

Cómo hacer una pantalla en Pygame

# This is the most easiest method to create a screen in pycharm 

import pygame
# initialize pygame
pygame.init()
screen = pygame.display.set_mode((1370, 710))
#1370,710 gives a full screen
WinReck

Respuestas similares a “Cómo hacer una pantalla en Pygame”

Preguntas similares a “Cómo hacer una pantalla en Pygame”

Más respuestas relacionadas con “Cómo hacer una pantalla en Pygame” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código