Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Surprisingly addictive although I ran into performance issues when I got to a large scale (when my mana bar was at around 2000) - snowmen kept spawning in groups of 30 which caused my computer to freeze and I had to close the game. other than that had a good time. graphics are ok but could use some polish and styling. I liked that it's an original take on the old tower defense genre.

(+1)

Thanks! we sacrificed the graphics to get a few more fps, but still is quite cpu intensive, we tried to optimize it the best we could with the time we got.

I think the problem was lack of pooling or prewarmed pools if you were using pooling
When you instantiate many gameobjects in a single line during runtime it often causes freezes and this issue is resolved by either using prewarmed pools or dividing the instantiation into several frames, thus avoiding writing too much to memory in one line.