在pygame中,如何围绕中间底部旋转图像?

时间:2016-11-19 00:01:37

标签: python pygame

我正在制作2D坦克游戏,我有一个旋转我的炮塔的问题。炮塔应围绕其中间底部旋转,但它围绕中心旋转。

def turret_rotate(self):
    turret_rot_image = pygame.transform.rotate(self.turret_image,self.turret_angle)
    turret_rot_rect = turret_rot_image.get_rect(center = self.turret_rect.midbottom)
    return turret_rot_image,turret_rot_rect

任何人都可以帮助我吗?

解决

0 个答案:

没有答案