how to set the location on a pygame window

Solutions on MaxInterview for how to set the location on a pygame window by the best coders in the world

showing results for - "how to set the location on a pygame window"
Edoardo
10 Jun 2017
1    pos_x = screen_width / 2 - window_width / 2
2    pos_y = screen_height - window_height
3    os.environ['SDL_VIDEO_WINDOW_POS'] = '%i,%i' % (pos_x,pos_y)
4    os.environ['SDL_VIDEO_CENTERED'] = '0'