mirror of https://github.com/raysan5/raylib
Fix color of ambient light (#1330)
This commit is contained in:
parent
1d895616f7
commit
3c095f9d34
|
@ -75,7 +75,7 @@ void main()
|
|||
}
|
||||
|
||||
finalColor = (texelColor*((colDiffuse + vec4(specular, 1.0))*vec4(lightDot, 1.0)));
|
||||
finalColor += texelColor*(ambient/10.0);
|
||||
finalColor += texelColor*(ambient/10.0)*colDiffuse;
|
||||
|
||||
// Gamma correction
|
||||
finalColor = pow(finalColor, vec4(1.0/2.2));
|
||||
|
|
Loading…
Reference in New Issue