Thanks to Pygame, there’s a quick and easy method to get the dimensions of an image. You just have to load it into a Surface and use the Surface methods get_height() and get_width().
Thanks to Pygame, there’s a quick and easy method to get the dimensions of an image. You just have to load it into a Surface and use the Surface methods get_height() and get_width().
Got this little book shortly after I started learning Python. The first book I bought was specific to game programming, and skimmed over the basics of the language a little too much. Rather than try to be a “bible” type…
This is the first book I bought when I needed to learn Python. I’ve always found it easier to learn a language against the backdrop of a game. Since this was the first experience with Python, I spent quite a…
This is a follow up to an earlier post where we created a scrolling background in Flash using ActionScript. This time we’re going to do the same thing, but using Python and Pygame. The Logic This animation is what we’re…
It’s a pretty common task to get the distance between 2 points. Maybe you’re wanting to see if two points are close enough to have collided. Maybe you’re making a golf game and the closer the ball is to the…