11
$\begingroup$

I have to make a bricks texture jagged or corroded this and have no idea how to make it. I tried Voronoi + Brick and nothing makes it look like this.

Enter code here

$\endgroup$
1
  • 5
    $\begingroup$ It looks like two wave textures, one set to x band and the other to y band with some tuning on the distortion, detail and noise, as a guess $\endgroup$ Commented Jun 16, 2021 at 20:23

2 Answers 2

13
$\begingroup$

I would approach it something like this:

Platform1

I would start by using the Position output of a Voronoi Texture with the randomness set to 0 as the Vector input of a White Noise Texture. The reason for this is that by default, White Noise Texture is infinitely zoomable, and using the Voronoi Position allows you to scale it (to make larger tiles). I wanted to use White Noise because it has that random grayscale checkered pattern.

Platform2

To get the edges "warped", I added the influence of a Noise Texture to the input Vector of the "tiles". You can see I added a MixRGB mixed with white before adding the vector. This is because generated textures can often supply values outside the normalized (0-1) range that many shader systems are trained to handle. The result is the values these generated textures produce are simply too "strong" without being "diluted" somewhat (something to lower their strength/contrast). I find the MixRGB is a fast way, that allows me to control the strength easily with the slider.

To make the "grouting" stand out, I used a brick Texture using the same Warped input vectors as the Voronoi, however I had to offset it by a bit so the grout lined up with the tiles. I also had to change some length/width values on the brick so they were square. I also had to change the offset so they look like "tiles" and not "bricks".

Platform3

I mixed the Tiles and the Grout together and used it as a basis for both the Base Color and a Bump map. I also added a bit of the Noise texture to the Bump map to give it that slightly rippled finish. Notice how mild the map looks going into the bump node - anything more looks too strong. I even had to reduce the strength of the bump to get it right:

Plat4

Lastly I turned up the metallic and down the Roughness and voila:

$\endgroup$
2
  • $\begingroup$ Oh, sorry, posted at the same time :) $\endgroup$ Commented Jun 16, 2021 at 20:54
  • 2
    $\begingroup$ It's all good. Yours seems faster. $\endgroup$ Commented Jun 16, 2021 at 20:55
27
$\begingroup$

You can get there using a brick and noise textures.

  1. Use a Brick texture for the randomly colored tiles
  2. Use a Noise texture to 'mess up' the edges
  3. Done.

enter image description here

enter image description here

$\endgroup$
0

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .