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

https://github.com/jharrilim/pong-amethyst

pong tutorial from https://www.amethyst.rs/book/latest/pong-tutorial
https://github.com/jharrilim/pong-amethyst

amethyst pong rust

Last synced: 2 months ago
JSON representation

pong tutorial from https://www.amethyst.rs/book/latest/pong-tutorial

Awesome Lists containing this project

README

          

# Pong

![Image of PONG](./pong.png)

## Playing Pong

### Linux Prerequisites

WIP: Currently testing this

#### Debian/Ubuntu

```
sudo apt-get install libasound2-dev cmake freetype2
```

### Run Pong

Clone the repo and run `cargo run` in your shell.

### Controls

| Movement | Player 1 | Player 2 |
| :-: | :-: | :-: |
| Up | W | Up Arrow |
| Down | S | Down Arrow |

## Overview

PONG is made using Amethyst with it's built-in ECS model.