views:

465

answers:

2

What are some 'good', non-trivial Pygame tutorials?

I realize good is relative. As an example, a good one (to me) is the one that describes how to use pygame.camera. It's

  • recent
  • uses a modern PyGame (1.9)
  • non-trivial, in that it shows how to use it the module for a real application.

I'd like to find others. A lot of the ones on the Pygame site are from 1.3 era or earlier!

Info on related projects, like Gloss is welcome as well.

(If your answer is "read the source of some pygame games", please link to the source of particular ones and note what is good about them)

+5  A: 
Eli Bendersky
Excellent start Eli!
Gregg Lind
Great post! Gonna read this when I get home.
mizipzor
A: 

Object oriented approach to PyGame The aim is to create 2D game engine, with classes that wraps PyGame.

przemo_li