Material: Scale "Strength" of Normal Map?

thats because normal maps are normalized, meaning the 3D vectors that the image describes will always be unit vectors, with a length of 1. so if you multiply all the channels by 1000, they are still proportionally the same, and get normalized back to 1. its like you are scaling the vectors, but not changing their rotation, and the lighting only cares about the direction, not the size of the vectors.

the trick is to multiply the blue channel, and leave the red and green alone. then the proportions will change, pointing the light rays in different directions.

so brighten or darken the blue channel, and leave the other channels alone. (or the other way around: multiply the red and green channels and leave the blue channel alone. either way affects the relative proportions of the RGB channels, which adjusts the angle of the light rays.)

1 Like