I have one picture which I want to use multiple times on the screen but it always has to be rotated differently. If I use the pygame.image.rotate function it rotates the imported image so I can't rotate every image on its own. Is there any way I can copy it in the code and then rotate it?
> image = pygame.image.load("assets/image")
pygame.transform.rotate(image, 20) #rotated by 20 deg
pygame.transform.rotate(image, 20) #rotated by 20 + 20 deg
#what i want
copy(pygame.transform.rotate(image, 20))