Hi, I was wondering if the scene module supported gifs. I've tried using them in my own project but they are just a still image.
Here's some example code so you can see what I'm trying to do:
from scene import *
class MyScene (Scene):
def setup(self):
self.background_color = 'midnightblue'
self.ship = SpriteNode('ship.GIF') #Why won't it play?
self.ship.position = self.size / 2
self.add_child(self.ship)
run(MyScene())
Help would be appreciated, thanks.