What PBR texture generation actually produces and why it matters
Physically based rendering has been the standard for real-time and offline 3D for about a decade, but the terminology still trips people up. When Silver Canyon delivers a PBR texture set, it produces four separate image files. Understanding what each one does makes it easier to evaluate the output and to know which map to adjust when something looks wrong.
Albedo: the base colour
The albedo map contains the surface colour with no lighting information baked in. This is different from older diffuse maps, which often included ambient occlusion or shadow information. A clean albedo map should look flat and evenly lit when viewed in isolation.
AI-generated albedo maps sometimes include subtle lighting artefacts, particularly on organic surfaces where the training data included baked lighting. If the albedo looks slightly darker on one side of the object, that is usually the cause.
Roughness and metallic maps
The roughness map controls how sharp or blurred the surface reflections are. A value of 0 (black) produces a mirror-like surface; a value of 1 (white) produces a fully diffuse, matte surface. Most real materials sit somewhere in between and vary across the surface.
The metallic map tells the renderer whether a surface is a conductor (metal) or a dielectric (everything else). It is almost always a binary value: either 0 or 1, with very little in between. AI-generated metallic maps occasionally produce intermediate values on surfaces that should be fully metallic, which produces a slightly muddy appearance. Pushing the metallic map to full contrast in an image editor usually fixes this.
Normal maps and surface detail
The normal map encodes surface direction information that makes a flat polygon appear to have fine surface detail: scratches, grain, weave, pores. It does not change the actual geometry; it changes how the renderer calculates lighting at each pixel.
AI-generated normal maps are generally reliable for common material types. Where they sometimes fall short is on very fine, regular patterns like woven fabric or knurled metal, where the pattern needs to be precisely tiled. In those cases, using a procedural normal map from a texture library and blending it with the AI-generated map produces better results.
Each map in a PBR set answers a specific question about the surface. When the render looks wrong, asking which question is being answered incorrectly usually points directly to the map that needs adjustment.