-
**Environment:**
```
pygame-ce 2.5.2 (SDL 2.30.8, Python 3.12.2)
Platform: Linux-6.6.10-76060610-generic-x86_64-with-glibc2.35
System: Linux
System Version: …
-
## Introduction
Last week I went and profiled a handful of random games, mostly from pygame community game jams. One thing I noticed is that fill was often one of the higher ranked pygame-ce functi…
-
python3 carla_parking_eva.py
pygame 2.5.0 (SDL 2.28.0, Python 3.7.16)
Hello from the pygame community. https://www.pygame.org/contribute.html
INFO: listening to server 127.0.0.1:2000
INFO: Load Ma…
-
### Problem
- the pygame-ce package is in pyodide but,:
- https://pyodide.org/en/latest/usage/packages-in-pyodide.html
- https://github.com/pyodide/pyodide/issues/289
- https://pyga.me/do…
-
import pygame
import random
# Farben definieren
colors = [
(0, 0, 0),
(255, 0, 0),
(0, 255, 0),
(0, 0, 255),
(255, 255, 0),
(255, 165, 0),
(255, 20, 147),
…
-
import pygame
import random
# Khởi tạo Pygame
pygame.init()
# Kích thước màn hình
SCREEN_WIDTH = 600
SCREEN_HEIGHT = 400
screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))
pyg…
-
Currently, the pygame.mixer.Channel.queue() method allows queuing a sound to be played immediately after the current sound finishes. However, it does not support specifying loop or fade options for th…
-
import pygame
import sys
import random
# Initialisation de Pygame
pygame.init()
# Dimensions de la fenêtre
window_width = 800
window_height = 600
window = pygame.display.set_mode((window_w…
-
I have a simple GUI app running on a Raspberry Pi Zero 2 with desktop which runs well but I would like to drop the desktop since it uses resources which are in short supply on the Zero2. (only 0.5GB m…
-
Description:
Enhance the README.md for the /pygames directory. Add more information about:
How to install Pygame.
How to contribute new games.
Guidelines for folder structure when su…