engine/shaders: disable ambient lighting

spoooooky
ecs
q3k 2020-07-23 23:27:37 +02:00
parent 778e8d74f0
commit 4425f9cdf8
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ void main() {
Lo += Li;
}
vec3 ambient = vec3(0.03) * albedo;
vec3 ambient = vec3(0.00) * albedo;
vec3 color = ambient + Lo;
outColor = vec4(color, 1.0);
}