This repository has been archived by the owner on May 10, 2021. It is now read-only.
Releases: taylorhansen/Pong-Arduboy
Releases · taylorhansen/Pong-Arduboy
Pong v1.3.1
Slight polishing.
Pong v1.3.0
New features:
- You can now play with 2 players (select from the title screen).
- Support was added for screen mirroring.
Pong v1.2.1
Not much happening here, but still noteworthy enough to be its own mini-release.
- Doubled the ball speed so the game is more interesting and difficult.
- Various micro-optimizations surrounding the ball.
Pong v1.2
Angles and vector math.
- X and Y coordinates were replaced by a new Vector class.
- The ball can move along any kind of vector by using an adaptation of Bresenham's line algorithm.
- When the ball hits the paddle, it changes direction based on where it hit the paddle.
Pong v1.1
Most of the updates here are centered around the paddle. It has been completely rewritten.
- Resized paddle.
- The ball can now bounce off of the top and bottom of the paddle.
- AI tweaks to make the game beatable with these changes.
Pong v1.0
Some final changes were added to the game to make it look nice.
- The game now makes some beeping sounds when the ball hits the walls/paddles.
- You can press A to pause/unpause the game.
- A slight bit of optimizations and UI improvements.
- Readme has been updated.
Pong v0.1
This is my initial push after developing the game before it went up on GitHub.
- Wide/thin paddles.
- Simple AI that randomly moves towards the ball.
- Score keeping (up to 3 points wins).
- 45 degree angles.
- Basic UI for starting/restarting a game.