Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jliberma/pygame_demo
https://github.com/jliberma/pygame_demo
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jliberma/pygame_demo
- Owner: jliberma
- Created: 2017-05-06T05:19:41.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-09T02:50:19.000Z (almost 8 years ago)
- Last Synced: 2024-11-20T00:05:38.168Z (3 months ago)
- Language: Python
- Size: 116 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pygame_demo
* [pygame 1.9.3](https://pypi.python.org/pypi/Pygame/1.9.3)
* [pygame docs](http://www.pygame.org/docs/)
* [pychimp tutorial](http://www.pygame.org/docs/tut/chimp.py.html) (source code)
* Online [image to bitmap converter](http://image.online-convert.com/convert-to-bmp)
* [Keyboard input issue](https://bitbucket.org/pygame/pygame/issues/203/window-does-not-get-focus-on-os-x-with) with MAC OSX> *NOTE*: pygame 1.9.x with python3 does not register SDL keyboard events. Use python 2.7 with pygame 1.9.3.
For example:
~~~~
$ conda create --name py27 python=2.7 numpy
$ source activate py27
$ pip install pygame==1.9.3
~~~~