A package for making simple menus for your python games!
Project description
simplepygamemenus
A package for making simple menus for your python games!
- By Leonardo Ferrisi
Installation
Install using
pip install simplepygamemenus
Documentation / API
Demo / Example:
See our Demo File
Features:
- Make simple pygame menus
Usage:
Create a main menu using the 'Menu()' construtor
Example:
myMenu = Menu(title="MyMainMenu")
Add buttons using:
myMenu.add_button(label='button text', x, y, fontsize, function=<function to perform>)
Example:
if you have added a second menu, you can switch to it using your new button using the:
`menuName.run_menu` function
Example2:
myMenu = Menu(title="MyMainMenu")
myOtherMenu = Menu(title="myOtherMenu")
myMenu.add_button(label='button text', x, y, fontsize, function=myOtherMenu.run_main)
I'll add more soon, see the example below!
- Leonardo
Extra Info:
- PyPI Page: https://pypi.org/project/simplepygamemenus/
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
simplepygamemenus-0.1.4.tar.gz
(42.4 kB
view details)