Metadata-Version: 2.3
Name: pygame-gamma
Version: 0.5
Summary: A simple ECS game engine for Python, built on Pygame, with an emphasis on ease of use
Project-URL: Homepage, https://github.com/rik-cross/gamma
Project-URL: Suggestions and bugs, https://github.com/rik-cross/gamma/issues
Author-email: Rik Cross <rik.j.cross@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Gamma

![Gamma](src/gamma/images/gamma.png)

### A simple ECS game engine for Python, built on Pygame, with an emphasis on ease of use.

### Usage

- Install: `pip install pygame-gamma` or 
- Install from local source: `pip install -e [repo path]`

[Add suggestions and bugs here](https://github.com/rik-cross/gamma/issues)!

Note: This engine is currently in early development. Until it reaches version 1.0 it will change a lot, including the introduction of some breaking changes.

### Getting started

+ See the [examples](./examples/)
+ See the [Collect the Coins](./examples/collect_the_coins) example

### Changelog

|Version|Description|
|---|---|
|0.1|Initial engine version. Includes a basic ECS implementation, scenes (and transitions) and some UI elements. There are very basic versions of a number of systems.|
|0.2|Some improvements to the systems, mainly adding optional parameters to allow customisation.|
|0.3|More improvements to the systems, including the addition of a renderer for each scene. This takes the drawing away from the camera system, and allows for the addition of custom systems that can draw.|
|0.4|The addition of a 'collect the coins' example, showing how to create a very simple but complete game. This coincides with the creation of an initial video tutorial series. There are also other various edits and improvements.|
|0.5|Systems and components no longer require a `key` string, and are stored and accessed by type. The ResourceManager has been removed. `System.checkRequirements` has been removed, with `setRequiredComponents` and `setRequiredComponents` methods added.|

### Licence

Distributed under the MIT License. See [LICENSE](LICENSE) for more information.
