https://github.com/tcdude/foolysh
Foolish attempt of a 2D game engine for Python
https://github.com/tcdude/foolysh
Last synced: about 1 year 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T14:47:14.000Z (over 3 years ago)
- Last Synced: 2025-04-01T17:01:11.358Z (about 1 year 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 app
class 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()
```