수색…


비고

다른 색상을 배경으로 사용하려면 red = (255,0,0) 와 같은 새 변수의 이름을 지정하고 display.fill(black)display.fill(red) 합니다. 변수를 변수에 저장하고 인터넷에서 RGB 값을 확인하여 색상을 만들 수 있습니다.

파이 게임 창 만들기

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