Поиск…


замечания

Если вы хотите иметь другие цвета в качестве фона, то назовите новую переменную типа red = (255,0,0) и измените display.fill(black) на display.fill(red) . Вы можете создавать цвета, сохраняя их в переменной и проверяя их значения RGB из Интернета.

Создание окна 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
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow