標題很自我解釋。我試圖找出如何使用Python的這個俄羅斯方塊遊戲的數組做一個矩形。如何使用數組製作一個矩形,以便我可以同時在屏幕上顯示多個?
下面的代碼:
screen = pygame.display.set_mode((400,800))
#Rectangle Variables
x = 200
y = 0
width = 50
height = 50
thickness = 5
speed = 1
#Colors
red = (255,0,0)
white = (255,255, 255)
green = (0,255,0)
blue = (0,0,255)
while(True):
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit(); sys.exit();
#These lines^make the user able to exit out of the game window
y = y+1
pygame.draw.rect((screen) , red, (x,y,width,height), thickness)
pygame.display.update()
請隔離你有,而不是傾銷代碼塊的問題,並說如何做這個? – mickmackusa
沒問題我剛換了它。 –
你必須說明什麼是孤立的問題。我們不會爲您編寫新代碼,您會分離出一個問題/錯誤,並解決該問題。 – mickmackusa