Grid object with images

I’m trying to create a 3D board game and have used a Grid object for the board.



Players can navigate the board to collect objects by moving through the board one cell at a time.



However I want to add an image to the grid as it’s just a grid object at the moment. For example a chess board would have black and white squares. Is this possible? I’ve tried adding a material but this only changes the look of the wireframe of the grid.



Thanks :slight_smile:

The grid you probably are talking of is a wireframe structure.



Better would be to make up the board of quads, giving you the opportunity to set colors or textures on each quad.

Or use one big quad and use a black and white checkered texture.