All posts by Vern

Pygame Add Image to Surface

So, you know how to make a simply pygame window, and now you want to do something a bit more interesting, aye? How do you  add an image to your pygame surface ? In this quick tutorial, we’ll show you exactly that. So that your finished product will look like is the following picture :     … Continue reading Pygame Add Image to Surface →

Super Simple Pygame Window

If you’ve already installed pygame, let’s create a super simple Pygame window, that, for now, does nothing! We explain the code in detail below. What you’ll see: Code [crayon-662325b35e245984261553/] This simply creates a window and that’s it. And otherwise just initialize pygame (line 3) , creates the simple window (line 8) and uses the classic pygame … Continue reading Super Simple Pygame Window →

How to install pygame

Installing pygame can be tricky. The instructions here lead you through what you need to do.   Some pointers to reiterate: Pygame is very particular about the version of python. You need to have the same version of python that your pygame build  is targeted for.   The highlighted pygame build above is intended for python 2.5 32 … Continue reading How to install pygame →