我是关于pygame的新手,我的英语很差。
我想知道为什么我的代码不能在没有event.get()
的情况下作为动画运行。
import pygame
pygame.init()
screen = pygame.display.set_mode((500, 400))
pygame.display.set_caption('test')
i = 1
while i < 100:
i += 1
screen.fill((200, 200, 200))
rect = pygame.Rect(1 + i, 1 + i, 50, 50)
pygame.draw.rect(screen, (5, 5, 5), rect)
# pygame.event.get() # if add this , it works
pygame.display.flip()