Multitexture 2.04 Jun 2026
Use the "Randomize" settings. A tiny bit goes a long way—try a Hue random value of 2.0 and a Gamma random value of 0.05 for a natural look.
Several GitHub repositories are dedicated to reverse-engineering the Multitexture 2.04 algorithm. The open-source project aims to recreate the blending logic as a Blender shader node. multitexture 2.04
float4 MultiTexture_2_04( float2 uv, float4 vertexBlend, int decalMask ) float4 final = float4(0,0,0,0); float remainingAlpha = 1.0; for(int i = 0; i < MAX_ACTIVE_LAYERS; i++) float weight = getWeight(i, uv, vertexBlend, decalMask); if(weight < 0.02) continue; Use the "Randomize" settings