0

我在网上看了很多教程,但似乎无法在表面上绘制半透明的红色圆圈。

我希望使用此方法突出显示带有半透明红色圆圈的精灵:

def highlight(self):
    s = pygame.Surface((self.rect[2]*2,self.rect[3]*2)) #create a surface to draw circle on twice as big as the sprite rectangle)
    s.fill((0,0,0)) #fills the surface with black
    pygame.draw.circle(s, (255,0,0), self.rect.center, self.rect[3], 0) # draws red circle on the surface
    s.set_colorkey((0,0,0)) # makes the black surface background transparent
    s.set_alpha(50) # makes the whole surface translucent (i.e. the red circle remaining)
    variables.screen.blit(s, (self.rect[0]-self.rect[2]/2,self.rect[1]-self.rect[3]/2)) #blit's the red circle centered on my sprite.

我真的不知道我做错了什么......我可以通过使用以下方法来获得红色圆圈:

def highlight(self):
    pygame.draw.circle(DISPLAYSURF, (255,0,0), self.rect.center, self.rect[3], 0) # with display surf as my background for the whole game

但我不能让它半透明。我也不愿意使用 gfxdraw,因为它说未来的 Pygame 版本可能不支持它。

谢谢您的帮助。

4

0 回答 0