pygame.Rect
pygame.Rect(top, left, width, height) # all values are integers in pixels
pygame.Rect
pygame.Rect(top, left, width, height) # all values are integers in pixels
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))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us