Tangent normal map rotator

Tangent normal Map Rotator using 2d rotation equation =)
https://www.siggraph.org/education/materials/HyperGraph/modeling/mod_tran/2drota.htm

You can download example ue4 file through below link
https://drive.google.com/file/d/15f76IxfcOHjBtL7_9_ju0MDEpYPJaec_/view?usp=sharing

3 Likes

Neat!

come to think of it, my world aligned normal map function does something similar! Material Function - World Aligned Texture/Normal With offset & Rotation - Asset Creation - Unreal Engine Forums

Thank you very much for sharing it!

yeah your asset is cool, I saw your work =)

1 Like

Thanks, Happy new year =)

For Unity users (or anyone writing shaders for custom engines), the trick is to rotate the x and y of the tangent Normal with the opposite rotation. This means calculating a second rotation matrix with the inverse angle, or the inverse matrix. However with basic rotation matrices with no (or uniform) scale, the transpose matrix is the same as the inverse, and that’s much easier to calculate. Easier still, just using a different order of the matrix and vector will apply the matrix as the transpose.

HLSL example:

// Get sine and cosine for angle (in degrees)
float s, c;
sincos(_Angle * (3.14159265 / 180.0), s, c);  

// Construct rotation matrix from sine and cosine
float2x2 UVRotationMatrix = float2x2(c,-s,
                                     s, c);

// Apply rotation to UV, centered around UV (0.5, 0.5)
float2 rotatedUV = mul(UVRotationMatrix, IN.uv - float2(0.5, 0.5)) + float2(0.5, 0.5);

// Get vector from normal map
half3 normal = UnpackNormal(tex2D(_BumpMap, rotatedUV));

// Rotate vector back into the original tangent space with transposed rotation
normal.xy = mul(normal.xy, UVRotationMatrix);
2 Likes

You know exactly =)
cool!!