Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Such a cheery little Cherry game!

The pixel art and music add a lot to your game.

Really nice idea growing your platforms, and the little SFX when dropping down is so cute!

How do you generate the platforms if I may ask? 

(+1)

Thank you so much!!  I’m so glad you enjoyed it =)

All the platform and enemy generation is done with a script that adds objects to a random area above the screen.  I used the rand_range() function to randomly spawn an object somewhere in between the left-most and right-most part of the screen.  I also used rand_range() to determine how high the next object should be.  Whenever an object goes below the screen, it gets destroyed and spawns a new object.  The actual script used is more complex than that, but that’s the best way I can explain it in a condensed way.  Thank you again for your kind words!