1
作爲pygame的新手,我在網上搜索瞭如何創建矩形。然後我使用該代碼,但運行時只顯示一個空白屏幕。沒有顯示錯誤代碼,但代碼沒有像我想象的那樣運行。我究竟做錯了什麼?使用Pygame創建矩形
import pygame, sys
import pygame.locals as GAME_GLOBALS
import pygame.event as GAME_EVENTS
pygame.init
#window variables
WindowHeight = 480
WindowWidth = 640
surface = pygame.display.set_mode((WindowWidth,WindowHeight))
surface.fill((255,255,255))
pygame.draw.rect(surface,(100,0,155),(0,0,100,100))
while True:
for event in GAME_EVENTS.get():
if event.type == GAME_GLOBALS.QUIT:
pygame.quit()
sys.exit()
你不*調用*'pygame.init'。 – jonrsharpe
窗口顯示 –