So, this is how made isometric ocean: It is literally a tile stamping system just arranged a bit differently Looking at figure #2 We start at the top and decrease vertically and move to the left. Once we reach out final isometric tile (#10) we go back to the top, though slightly translated right and downward (#11) so that #1 fits snugly on top of #11. Our isometric coordinate translation differs from common tile systems, as instead of translating horizontally, moving down only every row-- as we see in my previous tile system project-- we offset ourselves both vertically and horizontally for each tile- as seen in Fig #1. Additionally we can note that the horizontal translation per tile is twice that of the vertical one, because it's *isometric*, not just a diamond shaped tile system. This is more of a explanation of how the tile system works than of a tutorial, but I hope this helps :D