Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(6 edits) (+3)

Very cool stuff guys!

We recently took part in the #procjam2015 and released a free cellular automata tool on itch that can make simple pyramid mountains like below. We also explained how cellular automata works.





The tool itself: http://brainybeard.itch.io/cellular-automata-tool


(+1)

Very interesting! Can you go into more detail on how the height of the map was determined, since cellular automata is in 2d? Did I miss something in the explanation?

(+1)

Hi Travis. Thanks for the kind words, but unfortunately you didn't miss anything, we just ran out of time to explain the mountains part. However it is luckily quite simple. You basically go through the list of active tiles on the first layer and if an active tile has 8 neighbours alive, then you build a tile one block above it. You then repeat this step until you have several layers :)