How Does Pygame Control Time With Examples
The pygame.time module is mainly used to manage time and game frame rate per second(FPS). This article will tell you how to use it with examples.
The pygame.time module is mainly used to manage time and game frame rate per second(FPS). This article will tell you how to use it with examples.
The pygame.mixer module provides several methods to play, pause, stop sounds. It supports a lot of sounds format files. This article will tell you how to use it to play multiple formats of sounds with examples.
The pygame.font module provides methods for you to display text on the Pygame window screen. This article will tell you how to draw text on a Pygame surface object with examples.
A digital image is composed of many pixels, the pixel is the basic unit of the image, and each pixel can use a different color, finally showing a colorful image. The split and merge of images refers to the split and merge of image colors. Python pillow Image class provides methods ( split() and merge() …
How To Split, Merge & Blend Images Use Python Pillow Read More »
This article will tell you 2 methods to draw pixel units on pygame application windows screen with examples. One method will use the method pygame.draw.Rect(), the other method will use the pygame.PixelArray object.
I create a pygame.PixelArray object uses the pygame main screen window surface object ( returned by the method pygame.display.set_mode() ), and when I assign color to each item of the pygame.PixelArray object in a loop it throws the error pygame.PixelArray IndexError: invalid index. This article will tell you how to fix it.
This example will tell you how to implement animation in pygame game application. It will also tell you how to set the game app’s background image, and how to control the animation speed.
This article will tell you how to draw multiple shapes in pygame application with examples. It will use the multiple functions in the pygame.draw module, we will introduce them one by one.
This article will tell you how to transform, rotate, scale, and rotate-zoom an image in Pygame with examples.
The pygame.display module is used to create the Pygame app’s main window. And the pygame.surface module is used to create the Pygame app’s sub panel. You can draw figures, text, load images to the sub panel, and then add the sub panel to the Pygame app’s main window or another sub panel. This article will …
How To Use Pygame Display And Surface Object To Add Figure, Load Image Examples Read More »