This is Pong3D. A remake of an old project. It is a very simple 3D Pong game made in Python.
This game is written in Python. So you need the latest Python Interpreter installed.
At the repository's directory, install all the necessary dependencies with pip
:
$ pip install -r requirements.txt
- Soundtrack: Romantic by Francisco Alvear
- Other sounds: from opengameart.org
- Font: Plus Jakarta (Extra Bold)
After installing all the dependencies, run the only Python script at the src
folder:
$ python src/pong3d.py
Control | Description |
---|---|
ESC |
Pause/unpause game |
W /S |
Move paddle P2 |
LEFT ARROW /RIGHT ARROW |
Move paddle P1 |
You can also play the old version of the game. It's source code is in the oldsrc
folder inside the repository.
To play it, just install old dependencies and run the old script:
$ pip install -r oldsrc/requirements.txt
$ python oldsrc/__main__.py
By Marcio Dantas