https://github.com/wichmann/ballchase
Simple ball chase game developed in Python with Cocos2d
https://github.com/wichmann/ballchase
Last synced: 6 days ago
JSON representation
Simple ball chase game developed in Python with Cocos2d
- Host: GitHub
- URL: https://github.com/wichmann/ballchase
- Owner: wichmann
- License: gpl-2.0
- Created: 2015-02-22T18:57:26.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-13T21:40:57.000Z (over 11 years ago)
- Last Synced: 2025-10-04T10:42:05.703Z (10 months ago)
- Language: Python
- Size: 1.79 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BallChase
Simple ball chase game developed in Python with Cocos2d.
## License
BallChase is released under the GNU General Public License v2 or newer.
## Requirements
BallChase runs under Python 2.7 (cpython and pypy) and Python 3.4. It requires
pyglet and Cocos2d.
## Known problems
BallChase has problems on some computers with Intel graphics chipsets, e.g.
the Mobile Intel 4 Series Express Chipset Family. The error can be solved by
changing one line in the pyglet library (pyglet/gl/lib.py, line 102):
- if error:
+ if error and error != 1286:
With this change an OpenGL error (Invalid Framebuffer Operation) is simply
ignored and the program works as expected.
## Third party software
BallChase includes parts of or links with the following software packages and
programs, so give the developers lots of thanks sometime!
* soundex.py originally from http://www.partiallydisassembled.net/make_me/ and
modified later for the tetrico game from cocos2d project.
* some image and sound files from the tetrico game (cocos2d project)