Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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()
 
PREVIOUS NEXT
Tagged: #pygame #surface #lenght
ADD COMMENT
Topic
Name
1+2 =