I am building a game using canvas.
I have terrain that is generated randomly on game initilisation. The terrain is destroyable via the weaponry in the game.
Here is an example of the terrain I want to generate.
When generating this 2D terrain...
- Is it best to simply store the peaks per
xcoordinate, or store every pixel that is terrain? - When a portion is removed via weapon damage, should I switch that pixel to off and then redraw the terrain, or redraw the terrain whilst checking if each one is on via the weapons damage being stored? Or, upon weapons damage, should I adjust each peak in the terrain state and then redraw?