https://github.com/rebornplusplus/jumpy
Pygame Platformer Game
https://github.com/rebornplusplus/jumpy
Last synced: about 1 year ago
JSON representation
Pygame Platformer Game
- Host: GitHub
- URL: https://github.com/rebornplusplus/jumpy
- Owner: rebornplusplus
- License: cc0-1.0
- Created: 2020-08-20T01:18:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-18T09:30:23.000Z (over 4 years ago)
- Last Synced: 2025-01-27T07:09:28.764Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 2.99 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Jumpy
Pygame Platformer Game
### Controls
* `Left Arrow, Right Arrow` or `A, S` for movement.
* `Space` or `W` for jump.
* `Esc` to pause.
* Any key to unpause.
### Executing S/C
You need to have `python3` installed to run the source codes. Please download from [here](https://www.python.org/downloads/) if you don't have it. Installation procedure for your OS should be found there.
You also need to have `pygame` installed. Please find it [here](https://www.pygame.org/). You may follow [this page](https://www.pygame.org/wiki/GettingStarted#Pygame%20Installation) for installation details for your OS.
Execute the following command to run the game:
```
python3 main.py
```
If you don't want a `__pycache__` folder:
```
python3 -B main.py
```