你好,我是相當新的與pygame的編程和我有這樣的代碼:爲什麼有一個以上的球,我該如何解決?
import sys, pygame
pygame.init()
screen = pygame.display.set_mode((800, 368))
background = pygame.image.load("background.png")
background.convert()
screen.blit(background, (0, 0))
speed = [1, 1]
width = 800
height = 368
ball = pygame.image.load("ball.bmp")
ballrect = ball.get_rect()
player1 = pygame.image.load("player1.png")
player1rect = player1.get_rect()
while 1:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
ballrect = ballrect.move(speed)
if ballrect.left < 0 or ballrect.right > width:
speed[0] = -speed[0]
if ballrect.top < 0 or ballrect.bottom > height:
speed[1] = -speed[1]
screen.blit(ball, ballrect)
screen.blit(player1, player1rect)
pygame.display.update()
但是當我運行它,總會有太多的球,應該只有一個球。並且出現越來越多的球。
您是否正在清除新的圖像? –
最適合你的選擇是使用一個具有__del__方法的類 –
我不是blitting – user2565140