In this Unity tutorial we create a simple block stacking tower game. The aim is to drop and balance the blocks on the platform without them falling off.
The game logic is achieved via Unity's 2D physics engine and we contain most of the logic within a single game script. This covers topics such as: TextMeshPro, Sprites, Random colours, BoxCollider2D and game logic.
As with all the Let's Create tutorials in the series, we'll focus on creating the core game mechanic, leaving the extra polishing to you. If you have any request for small games you'd like to see in this series please leave a comment.
The full code for this is available on GitHub: https://github.com/Firnox/BlockTower
Other videos in the Let's Create series:
1. 2D Sliding Puzzle - • Let's Create: A sliding puzzle game i...
2. Whack-A-Mole - • Let's Create: Whack-A-Mole in Unity
3. Block Tower - [this video]
4. Minesweeper - • Let's Create: Minesweeper in Unity
5. Asteroids - • Let's Create: Asteroids in Unity
Contents:
0:00 Introduction
1:50 Basic game code
5:25 Testing and adding delay
6:20 Adding a game over condition
9:30 Final demo