I'm making this game, Looks like this:

Now, the grass and dirt you see, are all out of 20x20 blocks, images. How will I make hills, and caves in this?
|
I'm making this game, Looks like this:
Now, the grass and dirt you see, are all out of 20x20 blocks, images. How will I make hills, and caves in this?
| |||||
feedback
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
2D block games usally using predefined tilemaps. So, your map consist of individual tiles - I'm assuming you are visualizing an two-dimensional array, like this: map[20][20] =
Now you want to have "hills and caves". The simpliest solution would be to change that to i.e.
If you got also other Tiles in your Tileset you can use them as well for your hills & caves (i.e. 3, 4, 5…). You can even write your own mapeditor / fileformat for maps this way. I hope thats an help for you - also searching for "Tilemap". For implementation details you have to be more specificly about what you're using (seems like XNA) and how you are rendering your map right now. | |||
|
feedback
|
|
There's several options for that, one could be having a transparency channel and just draw them over. If its based on blocks of the same size this shouldn't be hard (Well depends on what you are using to develop that game). Another would be blending them in if required. | |||
|
feedback
|