我希望在调用时让我的图像移动。它一直将我的图像向右移动并且不会停止。如何使图像永远递增? Ty


 def move(self,x):
 self.rect.x + = x



答案 0 :(得分:0)
您必须在某处使用if
才能停止移动:
while True:
pressed = pygame.key.get_pressed()
if pygame.K_up in pressed:
move(self, x)