Answers for "pygame how to cretate a status window on a surface"

1

pygame how to get surface lenght

screen = pygame.display.set_mode((700, 500))
#get 2 variables for width and height
x, y = pygame.display.get_surface()
#get width
x = screen.get_width()
#get height
y = screen.get_height()
Posted by: Guest on December-01-2020
0

pygame caption

pygame.display.set_caption("title")
Posted by: Guest on December-06-2020

Code answers related to "pygame how to cretate a status window on a surface"

Python Answers by Framework

Browse Popular Code Answers by Language