🤖 Advanced Match 3 Puzzle Game in Godot3

Advanced Match 3 Puzzle Game in Godot

In this tutorial, we will create an advanced match-3 puzzle game, a type of puzzle game in which one piece is moved freely on the board for a certain period of time to erase three or more pieces of the same color in a row. This is easy to understand if you imagine a puzzle game like “Puzzle & Dragons” (a.k.a. “Puzzle Dora”), which has gained popularity as a mobile game. However, the tutorial would be too large if it included all game elements such as decks, gacha, and battles with enemy characters, so we will focus on the puzzle part of the tutorial this time. For more information on how to create an standard match-3 puzzle game like “Candy Crush” or a puzzle game like “LINE Tsum Tsum”, please refer to the following tutorial. Other Tutorials If you want to make a game like “Candy Crush”: Match 3 puzzle game in Godot If you want to make a game like “LINE: Disney Tsum Tsum”: Connecting matching colors puzzle game in Godot The project file that will be created at the end of this tutorial is located in the GitHub repository ....

2022-07-15 · 35 min

🤖 Match 3 Puzzle Game in Godot3

Match 3 Puzzle Game in Godot

In this tutorial, we will create a match 3 puzzle game. Match 3 is a puzzle game in which players move multiple colorful pieces evenly arranged along a grid on the board to eliminate three or more pieces of the same color in a row. This genre is particularly popular among mobile game players because it is easy to operate and enjoyable. Candy Crush, Toon Blast, and Royal Match are just a few examples of popular games. Puzzle & Dragons and LINE Tsum Tsum are also based on Match 3, although the controls are slightly different. In this tutorial, we will create a puzzle like Candy Crush, in which the pieces are moved only one square at a time to match colors. If you want to make a game like “LINE tsum tsum”, check another tutorial, Connecting matching colors puzzle game in Godot . The final project file for this tutorial is located at GitHub repository . If you download the .zip file and import the “project.godot” file in the “End” folder with the Godot Engine, you can check the...

2022-07-02 · 12 min

🤖 Connecting Matching Colors Puzzle Game in Godot3

Connecting Matching Colors Puzzle Game in Godot

In this tutorial, we will explain how to create a type of game in which you trace and erase drops of the same color, like the very popular Disney Tsum Tsum smartphone game. LINE: Disney Tsum Tsum Note that the final project file in this tutorial is located in the GitHub repository . You can directly check the project by downloading the .zip file and importing the “project.godot” file in the “End” folder with the Godot Engine. Environment This tutorial was created in the following environment ・Godot version: 3.4.4 ・Computer OS version: macOS 11.6.5 Memo: Please also use the following articles to help you start creating your game. Downloading Godot Project Manager of Godot Creating a new project First, we would like you to start Godot Engine and create a new project. Let’s name the project “Connect Colors Start. Editing project settings Once the editor appears, let’s editing the settings for the entire project. First, set the display size for the game. In this case, we set...

2022-06-20 · 10 min