我正在制作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
任何人都可以帮助我吗?
解决