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
- Host: GitHub
- URL: https://github.com/jharrilim/pong-amethyst
- Owner: jharrilim
- Created: 2019-02-17T15:43:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-18T23:56:15.000Z (over 6 years ago)
- Last Synced: 2025-07-12T09:39:25.543Z (3 months ago)
- Topics: amethyst, pong, rust
- Language: Rust
- Size: 65.4 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pong

## 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.