Pygame window not showing up

后端 未结 3 1287
后悔当初
后悔当初 2021-01-22 16:23

I recently downloaded pygame on my Mac, but for some reason, the window does not pop up with the screen or anything. I don\'t get an error message, it just runs but doesn\'t act

3条回答
  •  误落风尘
    2021-01-22 17:06

    Please check this solution.

    import pygame, sys
    from pygame.locals import *
    
    pygame.init()
    SCREENWIDTH = 800
    SCREENHEIGHT = 800
    RED = (255, 0, 0)
    screen = pygame.display.set_mode((SCREENWIDTH, SCREENHEIGHT))
    
    while True:
        pygame.draw.rect(screen, RED, (400, 400, 20, 20), 0)
        screen.fill(RED)
        pygame.display.update()
    

提交回复
热议问题