Hi, I am wondering how I could create a grid like renderer that is infinite.
So, imagine and infinite 2D landscape. Top down. The background is a grid. How can I have this gird exist, so that it is seen by the user?
Hi, I am wondering how I could create a grid like renderer that is infinite.
So, imagine and infinite 2D landscape. Top down. The background is a grid. How can I have this gird exist, so that it is seen by the user?
Could create grid squares that are drawn at certain x and z coordinates (or x and y, however your camera is positioned). A simple bitmap should do. Just use an array to hold the grid information. Lots of tutorials out there for using such systems.