I am coding but my pygame doesn’t show it’s windows bar, the code:
import pygame
pygame.init()
screen = pygame.display.set_mode()
window = pygame.display.set_mode((800, 400), pygame.RESIZABLE, pygame.WINDOWMAXIMIZED)
run = True
while run:
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
pygame.quit()
I tried a lot like Fullscreen, Resizable but it doesn’t work.
New contributor
Dat Nguyen Tien is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.