Skellington 1.8
skellington-1.8.tar.gzSkellington 1.8 now has support for eggs which are not zip safe, such as PGU and Pygame!
Also in 1.8, support for versions of the same egg for each platform. Ie you can distribute mac, linux and win32 builds of one egg (eg the pygame egg), which will make it easier for players to run your game.
PGU and a Linux build of Pygame have now been eggified, and are available here: http://code.google.com/p/python-game-kit/wiki/PackageList
(log in to comment)
Comments
It isn't that difficult to just load the files from a data directory, and I know a lot of people last time used the load function, which already opens a file,and then passed that to pygame, which wasn't pretty, instead of just using the filepath function.
I think that might be what Hectigo is referring to.
But basically filepath is the same as calling os.path.join("data","filename.x"), and that really isn't hard to do, and it is rather less confusing IMO.
But yeah, the data module could just return a filename.
hectigo, rb[0], richard: no worries, I'll make the changes.
eugman on 2007/07/26 19:32:
What do you mean they are not zip safe? Are they somehow linked to the file system?