我没有语法问题或任何问题,这只是运行程序时的问题
import pygame
pygame.init()
# generate window
pygame.display.set_caption("shooter Game")
pygame.display.set_mode((1080, 720))
running = True
while running:
# if the player close the window
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
pygame.quit()
print("game closed")
代码和🚀不停止跳跃的 Python 的场景镜头
你不更新显示,你必须与pygame.display.update()
您可以在pygame.display.set_mode((1080, 720))
后立即添加它 尝试这样,告诉我它是否有效:)