pygame-形状透明度不出现

时间:2018-12-02 10:28:34

标签: python python-3.x pygame alpha-transparency

我正在学习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()

这是我的结果: enter image description here

0 个答案:

没有答案