How can I add a moving Gif in pygame for a simple loop? I tried normal image importing but the .gif was invisible. Any ideas on how to do this? I want to do it for a new game I'm making with the main characters legs moving and fire to move. I haven't tried sprites in pygame because image importing is easy enough and it has worked thus far for static images with maybe a change to face different directions
I've tried simply this:
img = pygame.image.load("img.gif")
I blit'd it onto the screen. Invisible. I tried it with a .PNG and it was visible.