我正在学习Pygame,并尝试随着健康降低而淡出一名球员。我已经做到了这一点,但是,我发现透明性并不能整体发挥作用。
代码如下:
pygame.init()
clock = pygame.time.Clock()
height=720
width=1080
while True:
display = pygame.display.set_mode((width, height), pygame.SRCALPHA, 32)
display.fill((255,255,255))
pygame.draw.circle(display, (0,0,0,60), (int(width/2), int(height/2)), 50)
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
exit()
clock.tick(60)
pygame.display.update()