Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tcdude/foolysh
Foolish attempt of a 2D game engine for Python
https://github.com/tcdude/foolysh
Last synced: 19 days ago
JSON representation
Foolish attempt of a 2D game engine for Python
- Host: GitHub
- URL: https://github.com/tcdude/foolysh
- Owner: tcdude
- License: mit
- Created: 2019-05-03T23:06:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T14:47:14.000Z (about 2 years ago)
- Last Synced: 2024-12-16T20:54:09.319Z (24 days ago)
- Language: Python
- Homepage:
- Size: 4.75 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# foolysh
Simple 2D Rendering Engine based on PySDL2 with intended deployment on Android and potentially also iOS in the future.
This is a work in progress and far from being usable...
You can install `foolysh` using pip:
`pip install git+https://github.com/tcdude/foolysh.git`
see also the generated [docs](https://www.tizilogic.com/various/foolysh-engine)
##### Simple Example:
```python
from foolysh import appclass MyApp(app.App):
def __init__(self):
super().__init__('MyApp')
self.task_manager.add_task('quitter', self.quit, delay=5,
with_dt=False, args=(False, ))MyApp().run()
```