Tag archives for Java 2D
Learn to create a Snake game in Java 2D
Snake is a classic video game in which a player controls a Snake that must eat apples and avoid walls. Each time, you eat an apple, the Snake grows. The Snake's goal is to eat the maximum of apples. It's a game of kind infinite. Snake is also an ideal game to create when you want to learn to create 2D…
Learn to create a Tetris game in Java with Swing
Released in 1984, Tetris is a Russian tile-matching puzzle video game originally designed and programmed by Alexey Pajitnov. Tetris is based on usage of Tetrominoes. Where as we are in 2016, Tetris stays the most known game of history. In the following article, we're going to create a Tetris game in Java with Swing and Java 2D API. Programming Tip…