From 7e0ea6ff03bbcbefb319f01f53341fcc809e38ae Mon Sep 17 00:00:00 2001 From: Genaro Colusso Date: Mon, 19 Oct 2020 21:29:51 -0300 Subject: [PATCH] Create Pong-Game.md add pong game to intermediate --- Projects/2-Intermediate/Pong-Game.md | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Projects/2-Intermediate/Pong-Game.md diff --git a/Projects/2-Intermediate/Pong-Game.md b/Projects/2-Intermediate/Pong-Game.md new file mode 100644 index 00000000..37a513a3 --- /dev/null +++ b/Projects/2-Intermediate/Pong-Game.md @@ -0,0 +1,34 @@ +# Pong Game + +**Tier:** 2-Intermediate + +Add a clear description of the application and its main features. +Answer the following questions: + +- With this project you'll be learning about collisions, physics on JS recreating Pong with Javascript. + + +## User Stories + +- [ ] User can play a pong game versus an AI or a second player. +- [ ] User can restart the game +- [ ] User can see high score + +## Bonus features + +- [ ] Make it multiplayer +- [ ] Make it with P5JS ( JavaScript library for creative coding ) +- [ ] Make it with random custom Skins instead of white bars + + + +## Useful links and resources + + +- [p5JS documentation](https://p5js.org/) +- [Phaser Engine documentation](https://phaser.io/) + +## Example projects + + +- [Project example in pure JS](https://codepen.io/IgorPop/pen/GzmMaO)