Skip to content
This repository has been archived by the owner on May 10, 2021. It is now read-only.

Releases: taylorhansen/Pong-Arduboy

Pong v1.3.1

07 Mar 03:27
3b84add
Compare
Choose a tag to compare

Slight polishing.

Pong v1.3.0

12 Apr 01:11
ba91706
Compare
Choose a tag to compare

New features:

  • You can now play with 2 players (select from the title screen).
  • Support was added for screen mirroring.

Pong v1.2.1

31 Mar 04:11
v1.2.1
9e9dab7
Compare
Choose a tag to compare

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

29 Mar 03:21
v1.2
2ebc0e4
Compare
Choose a tag to compare

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

11 Jan 03:43
5a9c321
Compare
Choose a tag to compare

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

08 Jan 23:08
65f4cb7
Compare
Choose a tag to compare

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

07 Jan 22:26
v0.1
6011952
Compare
Choose a tag to compare

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.