rim is now light dependent

This commit is contained in:
lightling 2022-04-19 21:39:37 -04:00
parent 6f84155ec3
commit b2a3263dbb
Signed by: lightling
GPG key ID: 016F11E0AA296B67

View file

@ -39,7 +39,7 @@ float RampDiffuse(float original)
float RampSpecular(float original) float RampSpecular(float original)
{ {
if (original < 0.9f) return 0.0f; if (original < 0.6f) return 0.0f;
return 1.0f; return 1.0f;
} }
@ -91,7 +91,7 @@ float4 main(VertexToPixel input) : SV_TARGET
light += (diffuse * surface.rgb + specular) * attenuate * lights[i].Intensity * lights[i].Color; light += (diffuse * surface.rgb + specular) * attenuate * lights[i].Intensity * lights[i].Color;
} }
float4 rim = RampSpecular(1 - dot(view, input.normal)); float4 rim = RampSpecular((1 - dot(view, input.normal)) * pow(light, 0.075f));
float3 final = float3(light + rim/* + (emit * emitAmount)*/); float3 final = float3(light + rim/* + (emit * emitAmount)*/);
return float4(pow(final, 1.0f / 2.2f), albedo.a); return float4(pow(final, 1.0f / 2.2f), albedo.a);