Files
Reimagined/shaderpacks/Reimagined - Low/shaders/lib/materials/specificMaterials/terrain/netherrack.glsl
T
2026-05-07 21:38:27 +03:00

8 lines
186 B
GLSL

#if MC_VERSION >= 11300
smoothnessG = pow2(color.r) * 1.5;
smoothnessG = min1(smoothnessG);
#else
smoothnessG = color.r * 0.4 + 0.2;
#endif
smoothnessD = smoothnessG;