我在 Pygame 中有这张在屏幕上移动的图像。我想做的是每隔一段时间交替一次。所以,我希望它从 image1.png 开始,然后在页面上移动,在 human1.png 和 human2.png 之间切换,最后回到 image1.png。这可能吗?
我的代码是:
if (human1_position.left <= 555):
human1_position = human1_position.move(2, 0) # move first human
pygame.display.update()
else:
move = STOP
screen.blit(human1, human1_position)
谢谢