我正在使用 PyGame 库在 Python 3 中创建 Pong 版本。我正在尝试将图像渲染为“表格”背景,然后在其顶部显示球。我的问题是球是唯一显示的图像,显示黑色背景。但是,如果我删除与球有关的代码,则会显示“表格”图像。我怎样才能把球放在桌子上?
import pygame
pygame.init()
size = [500,500]
speed = [2,2]
screen = pygame.display.set_mode(size)
table = pygame.image.load('table.jpg')
table_rect = table.get_rect()
paddle_one = table = pygame.image.load('paddle.jpg')
paddle_one_rect = paddle_one.get_rect()
while True:
screen.blit(table, table_rect)
screen.blit(paddle_one, paddle_one_rect)
pygame.display.update()