5
我是pygame的新手,想要編寫一些代碼,每10秒只將圖像旋轉90度。我的代碼看起來是這樣的:使用pygame旋轉圖像
import pygame
import time
from pygame.locals import *
pygame.init()
display_surf = pygame.display.set_mode((1200, 1200))
image_surf = pygame.image.load("/home/tempuser/Pictures/desktop.png").convert()
imagerect = image_surf.get_rect()
display_surf.blit(image_surf,(640, 480))
pygame.display.flip()
start = time.time()
new = time.time()
while True:
end = time.time()
if end - start > 30:
break
elif end - new > 10:
print "rotating"
new = time.time()
pygame.transform.rotate(image_surf,90)
pygame.display.flip()
此代碼不工作即,圖像不旋轉時,雖然「旋轉」正在打印在每10秒的終端。有人可以告訴我我做錯了什麼嗎?