The ultimate introduction to Pygame

In this tutorial you will learn to create a runner game in Python with Pygame. The game itself isn’t the goal of the video. Instead, I will use the game to go through every crucial aspect of Pygame that you need to know to get started. By the end of the video, you should know all the basics to start basically any 2D game, starting from Pong and ending with the first generation of Doom and Wolfenstein Link to the project folder: Link to the background music: Link to the artwork: Timestamps 0:00:00 intro 0:01:06 How games work 0:05:06 What Pygame does 0:08:08 Creating a blank window ( clock) 0:22:07 Displaying images (with surfaces) 0:42:22 Basic animations 0:51:28 Rectangles 1:03:47 Collisions with rectangles ( using the mouse) 1:15:38 Drawing with rectangles ( colors) 1:29:35 The
Back to Top