gpt4 book ai didi

python - Pygame 只绘制屏幕的 1/4

转载 作者:太空宇宙 更新时间:2023-11-03 18:21:36 25 4
gpt4 key购买 nike

我不知道为什么会发生这种情况。我在其他电脑上测试过,效果很好。这是它的样子:

enter image description here

下面的代码,我认为这并不重要,因为它可以在其他计算机上运行。

pygame.init()
pygame.display.set_caption("Pixelites")
surface = pygame.display.set_mode((WIDTH,HEIGHT), 0, 32)

CLOCK = pygame.time.Clock()
tiles=defaultTiles(surface,WIDTH,HEIGHT)

while True:
surface.fill((0,0,0))
for event in pygame.event.get():
if event.type == MOUSEBUTTONDOWN:
pass
if event.type == QUIT:
pygame.quit()
sys.exit()
for t in tiles:
t.draw(surface)
pygame.display.update()
CLOCK.tick(1000)

最佳答案

没有更新表面。哎呀。

关于python - Pygame 只绘制屏幕的 1/4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24021715/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com