How to make a match-3 game?

hello i want to make a candy crush style game how can i do it

1 Like

There’s a lot of work going into a game such as candy crush! But for the basics you need:

  • Spawn items in a grid
  • Detect user input (mouse+touch)
  • Check if items in the grid match (3, 4, 5 in a row etc)
  • Remove items
  • Spawn more items and let them fall down

I suggest studying some of the examples to get an understanding of the basics of the above things:

Also study the color slide tutorial:

And the manuals for a deeper understanding:

Finally I’ve made a match-3 engine/component that you can base things on or get inspired by:

8 Likes

thank you this will be very helpful for me

I guess, platformer and match-3 are the genres every game developer should make eventually. :wink:

1 Like