Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

pygame draw transparent rectangle

s = pygame.Surface((1000,750))  # the size of your rect
s.set_alpha(128)                # alpha level
s.fill((255,255,255))           # this fills the entire surface
windowSurface.blit(s, (0,0))    # (0,0) are the top-left coordinates
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #pygame #draw #transparent #rectangle
ADD COMMENT
Topic
Name
5+7 =