This repository contains the Unity project source for CollapseBlast.
CollapseBlast is a simple 2D casual puzzle (block collapse) game. The board is filled with colored blocks. When the player taps a block, the game finds the connected group of the same color:
- If the group size is 2 or more, the group is removed.
- Blocks above fall down with a simple animation (gravity).
- New blocks spawn from the top to fill empty cells.
- Some cells can be box obstacles that take damage when a blast happens next to them.
The main goal is to keep making valid moves and clear blocks while the board updates dynamically.
Assets/(scripts, configs, prefabs, etc.)Packages/ProjectSettings/
- Sprite / image files (PNG, etc.) were removed intentionally.
Because of this, after opening the project you may see missing sprites or blank visuals in the scene. Gameplay / logic code is still included.
- Unity 6 (6000.2.x)
- Install Unity Hub and Unity Editor 6000.2.x
- Unity Hub → Add → select the project folder
- Open the project (first import may take some time)
If you want visuals back, add your own sprites and assign them in:
Assets/Configs/SpriteSet_Default.asset
- File → Build Settings
- Select platform (Android)
- Add the main scene to "Scenes In Build"
- Build / Run