pygame make rectangle smaller code example
Example 1: how to make a rectangle in pygame
x_pos = 20
y_pos = 20
width = 50
height = 50
rectangle = pygame.Rect(x_pos, y_pos, width, height)
def make_rect():
pygame.draw.rect(surface, (RGB colour in this tuple), rectangle)
run = True
while run:
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
make_rect()
pygame.display.update()
Example 2: pygame draw transparent rectangle
s = pygame.Surface((1000,750))
s.set_alpha(128)
s.fill((255,255,255))
windowSurface.blit(s, (0,0))