pygame window at center

Solutions on MaxInterview for pygame window at center by the best coders in the world

showing results for - "pygame window at center"
Elisa
21 Jun 2016
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'
Louise
26 Jan 2018
1import pygame, os
2os.environ['SDL_VIDEO_CENTERED'] = '1'
3
4# This has to be done before you initialise pygame with pygame.init()