UE5.0.3 material RGB value change

  1. use photoshop create pure color image the RGB is (203, 212, 230)

  2. load this image to ue5 and the color is correct

  3. create new material like this and the preview image color is changed


    color 0 : (203,212,230)
    color 1: (202,211,230)
    color 2: (204,214,232)

I want the preview unit texture color equal import image color, anyone can help thanks

If you need precise values for data (VertexAnimationTexture for example), better way to check correctness of the sampled values with a “DebugFloat3Values” node in material editor.

Because if you are checking values from the screenshot there are multitude of things that come into play. For example here:

This means that by default viewport in Unreal Engine has bunch of PostProcessing effects going on. One of the ways is to use your own PPV and remove as much effects as you can, but the point is things get tricky when rendering pixels.

1 Like

Thanks for replying

1 Like