Answers for "how to make a rect in pygame"

5

how to make a rectangle in pygame

# make the x position, y position, width and the height of the rectangle
x_pos = 20
y_pos = 20
width = 50
height = 50

# make the rectangle variable
rectangle = pygame.Rect(x_pos, y_pos, width, height)

# now add this to a surface, add a colour and the rectangle and make it a function
def make_rect():
	pygame.draw.rect(surface, (RGB colour in this tuple), rectangle)


# after this add it to your infinite loop
run = True
while run:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            run = False
            
	make_rect()
    pygame.display.update()
Posted by: Guest on December-17-2020
5

pygame.Rect

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

pygame draw rect syntax

pygame.draw.rect(SURFACE, RGB_COLOR, (X, Y, WIDTH, HEIGHT))
Posted by: Guest on September-12-2020
0

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

Python Answers by Framework

Browse Popular Code Answers by Language