How can I draw a rectangle that has a color with an alpha? I have:
windowSurface = pygame.display.set_mode((1000, 750), pygame.DOUBLEBUF) pygame.draw.rect(w
the most i can do to help you is to show you how to draw a rectangle that is not filled in. the line for the rectangle is:
pygame.draw.rect(surface, [255, 0, 0], [50, 50, 90, 180], 1)
the "1" means that it is not filled in