Answers for "pygame.Rect()"

6

pygame.Rect

pygame.Rect(top, left, width, height) # all values are integers in pixels
Posted by: Guest on February-03-2021
1

how to make a rect in pygame

# rectangle colour
rect_colour = (RGB VALUE)

# define the x, y, width & height for the rectangle
x_position = 30
y_position = 30
rect_width = 60
rect_height = 60

# draw the rectangle
pygame.draw.rect(screen, rect_colour, pygame.Rect(rect_width, rect_height))
Posted by: Guest on July-15-2021
1

pygame.draw.rect()

gameDisplay = pygame.display.set_mode((width,height))
bright_blue =(0,255,255)

# draw rectangle 
pygame.draw.rect(gameDisplay, bright_blue ,(611,473,100,50))
Posted by: Guest on July-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language