I want to create a 2D map composed of small tiles, that should look like voxels (eg. this just from side).
I think I can make a structure like Voxel2D, that have int X, Y and some Color, and every Voxel2D is going to be 5x5 pixels (so multiply X and Y by 5 when drawing).
But now how should I store the whole map? In a 2D array like classic Tile-map, or is there any faster way?
No comments:
Post a Comment