pygame
パイゲームウィンドウを作成する
サーチ…
備考
他の色を背景にしたい場合は、 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