0

我是pygame的新手。我只是想用 pygame 移动图像但它失败了我的代码是

import pygame
from pygame.locals import*
img = pygame.image.load('tank.jpg')

white = (255, 64, 64)

w = 640
h = 480
    screen = pygame.display.set_mode((w, h))

screen.fill((white))

running = 1

while running:

  x = 5
  x++
  y  = 10
  y++

  screen.fill((white))
  screen.blit(img,(x,y))
  pygame.display.flip()
  pygame.update()

我试过这段代码来移动图像。但这对我没有帮助。

4

1 回答 1

2

1)你的覆盖xywhile循环的每次迭代

2)你不能x++在python中做,x+=1而是使用

3) pygame.update()--> 我想你的意思是pygame.display.update()

尝试使用这个:

running = 1                     
x= 5                            
y = 5                           
while running:                  
    x +=1                       
    y +=1                       
    screen.fill((white))        
    screen.blit(img,(x,y))      
    pygame.display.flip()       
    pygame.display.update()
于 2014-07-12T04:57:17.883 回答