Jump to navigation Jump to search

Roughness Map: Difference between revisions

No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:


[[MediaWiki:Gamepress-navigation]]
[[MediaWiki:Gamepress-navigation]]
Roughness map is a texture used in physically-based rendering (PBR) workflows to define how rough or smooth a surface is. It controls how light interacts with the surface, affecting the sharpness or blurriness of reflections.
Purpose: It determines the microsurface detail of a material. A rough surface (e.g., sandpaper) scatters light, creating diffuse reflections, while a smooth surface (e.g., polished metal) produces sharp, clear reflections.
How it works: The map is typically grayscale, where:
Black (0) represents a perfectly smooth surface (sharp reflections).
White (1) represents a fully rough surface (diffuse, no clear reflections).
Gray values indicate varying levels of roughness in between.
Usage: Roughness maps are often combined with other PBR maps (like albedo, normal, and metallic maps) to create realistic materials in game engines like Unity or Unreal Engine.
File format: Commonly stored as a grayscale image (e.g., PNG or TGA) and applied to a material’s roughness or specular slot in a shader.
It’s a key component for achieving realistic lighting and material effects in modern games.

Latest revision as of 20:52, 10 June 2025


MediaWiki:Gamepress-navigation

Roughness map is a texture used in physically-based rendering (PBR) workflows to define how rough or smooth a surface is. It controls how light interacts with the surface, affecting the sharpness or blurriness of reflections. Purpose: It determines the microsurface detail of a material. A rough surface (e.g., sandpaper) scatters light, creating diffuse reflections, while a smooth surface (e.g., polished metal) produces sharp, clear reflections.

How it works: The map is typically grayscale, where: Black (0) represents a perfectly smooth surface (sharp reflections).

White (1) represents a fully rough surface (diffuse, no clear reflections).

Gray values indicate varying levels of roughness in between.

Usage: Roughness maps are often combined with other PBR maps (like albedo, normal, and metallic maps) to create realistic materials in game engines like Unity or Unreal Engine.

File format: Commonly stored as a grayscale image (e.g., PNG or TGA) and applied to a material’s roughness or specular slot in a shader.

It’s a key component for achieving realistic lighting and material effects in modern games.