i'm making a plane shooter game. I have made different plane sprites and i'm looking for a way to animate them so that my plane looks like its turning its propeller infinitely. myPlane (in position 1)
pos1 = pygame.image.load(r'C:\Users\me\Documents\MyGame\planee.png')
pos2 = pygame.image.load(r'C:\Users\me\Documents\MyGame\planee2.png')
pos3 = pygame.image.load(r'C:\Users\me\Documents\MyGame\planee3.png')
pos4 = pygame.image.load(r'C:\Users\me\Documents\MyGame\planee4.png')
pos5 = pygame.image.load(r'C:\Users\me\Documents\MyGame\planee5.png')
So keep in mind that from the start of the game to its end, the plane should seem to be turning its propeller infinitely, it means that this is not related to pressing or key or any event. How could i do that ?