docs.unity3d.com
    Show / Hide Table of Contents

    Mask and detail maps

    The High Definition Render Pipeline (HDRP) uses channel-packed textures to store multiple Material maps in a single texture. Channel packing is efficient because it allows the renderer to sample up to four grayscale maps that use the same UV coordinates with a single texture fetch. HDRP uses two types of channel-packed textures: the Mask Map, and the Detail Map. They can use a different set of UV coordinates, or a different UV tiling value, giving you more creative freedom.

    This document describes the format of the mask map and detail map so that you can author your own to use in HDRP.

    To create a mask map:

    1. Open image editing software that supports channel editing (such as Adobe Photoshop).
    2. Drag your grayscale textures into their respective color channel. For information about which texture belongs in which channel, see mask map and detail map.
    3. Export your image.
    4. When you import the image into Unity, make sure that it uses linear color space.

    Mask map

    The mask map contains four grayscale textures, one in each color channel. HDRP uses the mask map to store the metallic map, occlusion map, detail mask, and smoothness map for the material. The mask map stores these textures in the following channels:

    Color channel Map
    Red Metallic
    Green Occlusion
    Blue Detail mask
    Alpha Smoothness

    The following example image demonstrates the individual components of a full mask map.

    Detail map

    The detail map enables you to overlay a second set of textures on top of the base surface information. Typically, the detail map scales several times across the object’s surface to add small details to a material. The detail map contains two grayscale textures and one two-component texture, which is the Material's detail normal map. When you import the detail map, disable the sRGB checkbox in the Import Settings window to make it work as expected.

    Color channel Map
    Red Desaturated albedo
    Green Normal Y
    Blue Smoothness
    Alpha Normal X

    The following example image demonstrates the individual components of a full detail map.

    Desaturated albedo (red channel)

    The red channel represents the albedo variation. It makes the underlying material's albedo gradually darken down to black when going from 0.5 to 0 or brighten up to white when going from 0.5 to 1. A value of 0.5 is neutral, which means the detail map does not modify the albedo.

    The image below shows the impact of the detail albedo on the final color. HDRP calculates color interpolation in sRGB space.

    Smoothness (blue channel)

    The blue channel represents the smoothness variation and HDRP calculates it the same way as the albedo variation. The underlying material's smoothness gradually decreases if the detail smoothness is below 0.5 or increases if it is above 0.5. A value of 0.5 is neutral, which means the detail map does not modify the smoothness.

    The image below shows the impact of the detail smoothness on the final color.

    The following example shows the same gradient detail map as above, used by three Lit materials with different smoothness values.

    Back to top
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023