A set of handy pygame functions and classes to help with in making you next new game.
features include
- Contains Utils that can handle image scaling, opacity, outline and sprite sheets
- Contains Classes that can be extended to create Particle Systems
- Contains methods to easily make a scrolling background
- Contains methods that can help with text
This is my very first module built with the python for geeks book.
If you want references on how to use this module go to the examples folder from the root directory and here it contains 5 different tests each showing a use case of one or more of the function and methods provided by the package.
best way to use is to write
import kct_pygame_tools as kpt
Note: !!!IMPORTANT!!! You must install pillow manually for this module to work
and from there use kpt.""the class or function""
this package requires pillow to be installed manually and to do that just run the following command and then install this package
pip install pillow
- Initial release
- Added documentation to sprite sheets class
- added 2 new simplification classes
- Fixed all the errors so you can finally use the module