Enhancements and utilities for Pygame-based development
PGU, or Phil's Pygame Utilities, is a collection of tools and enhancements for Pygame to simplify game development. It includes modules for GUI elements, tile maps, and more.
Key Features:
Common Use Cases:
# Ensure pygame is installed first
pip install pygame
# PGU may not be available on PyPI, it often requires manual installation from sources
import pygame
from pgu import gui
pygame.init()
screen = pygame.display.set_mode((640, 480))
app = gui.App()
# Create the Pygame GUI app with a label widget
container = gui.Container(width=300, height=200)
label = gui.Label("Hello from PGU!", width=200, height=50)
container.add(label, 100, 50)
app.init(container)
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
app.event(event)
screen.fill((50, 50, 50))
app.paint(screen)
pygame.display.flip()
pygame.quit()