pygame-patterns
Installation
SKILL.md
Pygame Patterns Skill
Provides tested, verified pygame patterns from this project. Use when implementing new entities or systems to ensure consistency and correctness.
Core Principles
- Frame-Independent Movement: All movement uses delta_time for consistent speed regardless of framerate
- Verified Patterns Only: All patterns come from working code in this project
- Config-Driven: Use centralized config.py dataclasses, never hardcode values
- Angle Conventions: 0° = right, 90° = up, 180° = left, 270° = down (pygame Y-axis is inverted)