In the game I am making, I try to move the window around the screen for a mini-game (don't ask), and I tried what I saw my own threads and found only 1
x = 100 y = 0 import os os.environ['SDL_VIDEO_WINDOW_POS'] = "%d,%d" % (x,y) import pygame pygame.init() screen = pygame.display.set_mode((100,100))
and it doesnβt work (keep in mind that I am not super experienced and currently code as a hobby)
source share