| |||||||||||
PyWeek - Some more progress.There's a version of the game up now. You need pyOpenGL and pygame to run it.You can now climb stairs and walk around, and the level is saved in a file. The game has joystick support and other cool stuff, so try it out. — Skalle on 2006/09/09 17:01 of skellapptice Comments: (log in to comment) |
Last Challenge
September 2008 [entries, ratings] Previous March 2008 [entries, ratings] September 2007 [entries, ratings] April 2007 [entries, ratings] > September 2006 [entries, ratings] March 2006 [entries, ratings] (June 2006) August 2005 [entries, ratings] Not logged in Login | ||||||||||
By Phil on 2006/09/11 23:45:
Yarp?
By teppic on 2006/09/13 13:03:
You apparently don't have support for opengl texture compression. This is the case when using software rendering with MESA. The game only runs fine with hardware rendering, with software it's way too slow.
So. If you want to try it anyway, just make two small changes to cTexture.py:
1: remove the second import-statement (the one with ARB)
2: change GL_COMPRESSED_RGBA_ARB to GL_RGBA (one occurence)
By Phil on 2006/09/13 13:20:
I definitely have hardware OpenGL rendering; I play UT2K4 all the time. I'm not sure why PyOpenGL isn't picking it up, or isn't picking up the texture compression bits.