Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.36 KB

README.md

File metadata and controls

44 lines (34 loc) · 1.36 KB

Pong3D

This is Pong3D. A remake of an old project. It is a very simple 3D Pong game made in Python.

Pong3D Screenshot

How to play

This game is written in Python. So you need the latest Python Interpreter installed.

Dependencies

At the repository's directory, install all the necessary dependencies with pip:

$ pip install -r requirements.txt

Assets

Tutorial

After installing all the dependencies, run the only Python script at the src folder:

$ python src/pong3d.py

Controls

Control Description
ESC Pause/unpause game
W/S Move paddle P2
LEFT ARROW/RIGHT ARROW Move paddle P1

Old version

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