Zoeken…


Opmerkingen

Als u andere kleuren als achtergrond wilt hebben, geeft u een nieuwe variabele zoals red = (255,0,0) en wijzigt u de display.fill(black) in display.fill(red) . U kunt kleuren maken door ze in een variabele op te slaan en hun RGB-waarden van internet te controleren.

Het pygame-venster maken

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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow