Blocks Unlock is a classic puzzle game
It has 3 worlds , with a total of 30 levels
The goal is to clean each level by “filling rows”
Android version is now available
Thank you Defold
Blocks Unlock is a classic puzzle game
It has 3 worlds , with a total of 30 levels
The goal is to clean each level by “filling rows”
Android version is now available
Thank you Defold
awesome game bro i like it
Hey bro nice game. I have a question, how did you create this game. With tilemaps or something else? And how can you make the movement of figures in squares? I also wanted to create a similar game and would like to hear recommendations on how to make it better.
Hi Wadator,
I’m glad you like Blocks Unlock, it was a lot of work, so I’ll try to talk about the main aspects!
I think I started by learning the colorslide tutorial
And yes, in Blocks Unlock levels are made up with tilemaps:
Movement (dragging figures, pieces) it is a bit complicated.
Pieces are game objects with 25 sprites (5x5)
To move (drag) the game object I’ve started from here clicking a game object
You can find concepts concerning screen coordinates, world coordinates, and finally the project with the cursor script.
Dragging pieces is the half of the work.
I’ve found hard to match where a block drops into the tilemap.
The problem to solve is the change of coordinate system: world coordinates of the game object into tile index (ie: -4,-4 to 5,5) of the tilemap.
But this depends on how you draw the collection of the level, because game objects have relative placements.
Finally (really from the beginning!!!) I’ve used rendercam to achieve the orthographic view.
I hope this information helps you get started.
In the defold community you will find a lot of examples and works, and the defold team is great (helped me a lot) with great hints!
Thank you very much for your reply. Following your recommendations I’ll try to do something.