Making a Procedural Grid Material in Unreal Engine 4

In this tutorial we’re going to be creating a procedural material that will project a customizable grid in world-space onto any surface. This material features options for multiple grids, different line thicknesses to create subdivisions, a configurable checkerboard pattern, and some other useful features for blocking out your levels.

My goal in creating this material is to provide a simple, yet powerful tool that allows designers to comfortably get an idea of scale as they prototype their levels. It needs to be easy to use, customizable (without needing dozens of parameters), and be entirely procedural so it can operate at any scale.

I’ll be starting this material from scratch in a new project, and I will do my best to explain my thought process as we go so you can better understand how it works and modify it to suit your own needs. If you’re already familiar with materials of this kind, and you’d just like to see how this one differs from others you may have worked with, here is the material graph in its entirety.

If you want to download the project files I created for this tutorial you can do so from either this resource page or via the project’s GitHub repository.

Edit: Also, if you’re more of a Unity developer, I have just finished a variant of this shader for both the URP and HDRP which you can read about here.

Using the material

The grid material has just three parameter groups; Grid, Checker, and PBR.

Grid

  • Line tint
    The color of the material’s grid lines.
  • Primary grid size
    The size of the grid in centimeters. By default this is set to 100, so grid lines are spaced 1m apart.

    Side note: This material doesn’t use Unreal Units, so this value won’t change if you modify your measurement settings. For more information on Unreal Units, check out my article on scale and measurement inside Unreal Engine 4 here.
  • Primary grid line width
    The thickness of the primary grid lines. The strength of the lines that intersect the origin will be double this width setting.
  • Use secondary grid
    This setting will enable/disable a secondary set of grid lines. By default this is set to true because subdivisions are sexy.
  • Secondary grid size
    The size of the secondary grid in centimeters. Set to 20 by default, making a 5×5 grid within each primary cell.
  • Secondary grid line width
    Set to 0.5cm by default.
  • Secondary grid intensity
    This value sets how visible the secondary grid lines are to help with visual clarity. A value of 1 is fully opaque, whereas 0 is visually the same as disabling the secondary grid entirely. Its default value is .2.
  • Secondary grid fade distance
    The distance from the camera at which the secondary grid will be fully faded out. This is to avoid any ugly flickering artefacts that may occur when Unreal tries to draw pencil-thin lines at a distance. By default this is set to 2000cm.

Checker

  • Checker size
    The size in centimeters of one iteration of the checker pattern.
  • Wall tint
    The color of the grid material when applied to vertical surfaces.
  • Floor tint
    The color the grid material will be when applied to horizontal surfaces.
  • Projection transition contrast
    This value will dictate how much the material should blend between horizontal and vertical surfaces. The higher the value, the harsher the transition. By default this is set to 0, which means on sloped surfaces the colors will evenly blend into each other.
The effect of different ‘projection transition contrast’ values on a sphere.

Getting started

In your project of choice (I am using engine version 4.26, but I am confident this material will work in earlier versions) create the following assets.

  • A new material called M_Grid.
  • Two new material functions. Name them MF_Checker, and MF_GridLines respectively.

If you’re not familiar with material functions, think of them as reusable pieces of shader code that can be used (and reused) without having to copy/paste a large number of nodes every single time. They’re super useful, and we’ll be using them extensively in our material because I want it to be easily expandable. Follow this link for more information on material functions.

MF_GridLines

Our first material function is going to create a customizable set of lines at regular intervals in world space. We’ll use two instances of this function in our material to create the primary and secondary grids.

It’s not a big graph, but it does a lot of important math. The first section generates our world space grid by dividing the drawn pixel’s world position by an arbitrary input grid size, and then multiplies the remainder by itself. That gives us something that looks like this.

The function’s output using a Size of 100, and a Line Width of 1.

This is really close to what we need, except there’s a problem. At certain world space positions, where a mesh face is parallel with a line on the grid, there is a lot of strange flickering going on. For example, the top face of this cube is sitting along a line of the grid. Unreal is really confused as to what to draw, so it’s trying to draw two things at once.

Yikes.

Luckily, Epic has solved this one for us already inside one of their inbuilt material functions called “WorldAlignedTexture”. If you take a look inside this function (you can search it from the node list inside your Material Editor) you can see they project each direction separately and then blend them back together based on the direction of the vertex normal. This is the behaviour we want, and so we’ll implement something similar.

It’s a bit messy, but you can learn so much from diving into Unreal’s material functions.

The section “Creating masks based on vertex normal” in MF_GridLines does this too. It provides two masks – one for if the vertex normal is facing up or down using the blue channel (Z axis), and another if it is facing forward or back using red channel (X axis).

For more information on how to find position and direction from these values, check out my guide to Unreal Engine 4’s coordinate system.

The final section splits out the three projections we need, and then blends between them based on the vertex normal masks. This ends up with a grid that works in any direction, even when applied to more complex objects.

MF_Checker

This function is a little more advanced, but uses the same principles.

You can copy/paste the first section from MF_GridLines, but some additions are necessary to get the functionality we need. This version, instead of generating a set of grid lines, will create a checker pattern that is half the size of our arbitrary size input. We’ll need to remember this for later.

The rest is a variant of our previous graph where we split out three different projections, and then recombine them using our vertex normal mask. It’s important to note that the mask now has an additional Projection transition contrast scalar input value. This will adjust the contrast of the masks, changing the harshness of the transition between projections.

The last thing we need to do in this function is to add some color variation. I added in two color inputs, and a lerp node that will make every second square in the checker pattern about half the intensity of the first.

I like how this looks, so I’ll be leaving it as-is, but you could make this value a parameter if you wanted.

Bringing it all together

We can finally start making our actual material. This is mostly going to be a case of dropping in our functions and creating the parameters to control them. The material has three sections and some connective tissue. Here is the finished graph.

The Primary grid section is just one of our MF_GridLines material functions with two scalar parameters for controlling its size and line width.

The Secondary grid section is similar, but also includes a few extra nodes. One of these is a CameraDepthFade function which sets the distance from the camera at which the subdivision lines will fade out. I will only be working with the Fade Length input and leaving the rest at default, but you could parameterize the other values for more control.

The Checker pattern section is even more simple, and just requires the addition of some parameters to control it. You can use the same default values I have chosen, or pick your own.

Performance

The procedural grid material will work at any scale and with any mesh. It uses very few texture samplers, and will be a very efficient tool to help you block out your levels. If you’d like to reduce the instruction count even further, you can set the material to ‘Unlit’ and ‘Fully Rough’ in the material editor details panel.

The difference in complexity between the lit (top) and unlit versions of the material.

I hope you found this tutorial interesting and informative, and that it helps you with your level blockouts. Thanks for reading, and good luck with your projects!

Frequently Asked Questions

How can I make the grid move or rotate in local space?

If you’d like your Grid to move and/or rotate with the object to which you’ve applied the material you’ll need to transform Absolute World Position with a few extra nodes.

In the graph above I am subtracting the Actor Position from our existing Absolute World Space Position node, which locks the centre of our grid to the location of our Actor. Those coordinates are then multiplied by the Object’s scale to ensure the grid keeps its spacing no matter its size.

Finally, we use a TransformVector node to translate our coordinates from World Space to Local Space, which will make the grid rotate with our object.

My mesh is using smoothed normals and the grid looks weird, help!

If your mesh has smoothed vertex normals you might notice that the grid shader blends the colors of the checker pattern as well, even for acute angles. You may also notice some ugly flickering as the grid lines blend into each other. Not great!

Unsmoothed vs. smoothed vertex normal information

A simple way to fix it is to get the Material to generate its own vertex normal information. In this example I am using a static boolean parameter to switch between the mesh’s vertex normals and a set of generated hard-edged ones.

Nick Mower

I am a technical artist from Adelaide, Australia. I created techarthub to share my knowledge and love for this industry. I hope you feel it too!