pygame
Créer une fenêtre Pygame
Recherche…
Remarques
Si vous voulez avoir d'autres couleurs comme arrière-plan, nommez une nouvelle variable telle que red = (255,0,0)
et changez le display.fill(black)
pour display.fill(red)
. Vous pouvez créer des couleurs en les stockant dans une variable et en vérifiant leurs valeurs RVB à partir d'Internet.
Création de la fenêtre Pygame
import pygame
background_colour = (255,255,255) # For the background color of your window
(width, height) = (300, 200) # Dimension of the window
screen = pygame.display.set_mode((width, height)) # Making of the screen
pygame.display.set_caption('Tutorial 1') # Name for the window
screen.fill(background_colour) #This syntax fills the background colour
pygame.display.flip()
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
pygame.quit()
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow