Comments

Log in with itch.io to leave a comment.

(+1)

This is a great little game. A lot of fun in a small amount of time. Being able to move around is cool, though I wish the enemy tanks would also move sometimes. The variety of fun weapons is also a great addition. The airstrike is a suboptimal strategy, but damn does it feel good!

(+1)

Impressive! You packed a lot of items in there and the terrain destruction works great.

If you don't mind explaining, how did you accomplish the dynamic terrain?

(1 edit) (+1)

Thanks, glad you enjoyed it!

As for how it's done, it's a pretty straightforward brute forced solution. In essence, the map is a series of columns, with a full height and grass height. During the final frame of the full sized explosions, we do some circle math to figure out how much to remove from each column.

The map is generated by breaking the full playarea width apart into some random number of segments, setting key points for each segment and lerping between them. Little depressions of flat land are added after the map is generated for each of the tanks, by modifying the heightmap directly under them. And that's it!