PyGame and Animated Sprites – Take 2
I made a demo to better illustrate the topic covered in my previous post : PyGame and Animated Sprites
Here’s a screenshot of the application :
Download the Source code of the demo :
I made a demo to better illustrate the topic covered in my previous post : PyGame and Animated Sprites
Here’s a screenshot of the application :
Download the Source code of the demo :
Additional comments powered by BackType
Code doesn’t run on Ubuntu Linux, am I missing something?
Hi fabzter. Does it shows any error message that could help understanding why ?
For information, I tested this app on MacOsX Leopard, Debian Lenny and Win XP.
Well I may be some foolish, but it seems I am lacking one module:
Traceback (most recent call last):
File “main.py”, line 4, in
from gameobjects.vector2 import Vector2
ImportError: No module named gameobjects.vector2
Thanks for your help :)
@fabzter
I see, you are missing the GameObjects Module. You might want to check this post to know more about dependencies : http://blog.shinylittlething.com/2009/07/21/gama-pythonic-shiny-thing/
Here is what you’ll need:
Dependencies:
Let me know if all is ok :)