def draw_rotated(surface, image, angle, pos): new_image = pygame.transform.rotate(image, angle) rect = new_image.get_rect(center = pos) new_pos ...
確定! 回上一頁