An open API service indexing awesome lists of open source software.

https://github.com/rebornplusplus/jumpy

Pygame Platformer Game
https://github.com/rebornplusplus/jumpy

Last synced: about 1 year ago
JSON representation

Pygame Platformer Game

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
```