Skip to content
Snippets Groups Projects
Unverified Commit c46d3929 authored by Rye Mutt's avatar Rye Mutt :bread: Committed by GitHub
Browse files

Fix moon texture being incorrectly multiplied by the global light color (#174)

parent 03bd6815
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
out vec4 frag_data[4]; out vec4 frag_data[4];
uniform vec4 color; uniform vec4 color;
uniform vec3 moonlight_color;
uniform vec3 moon_dir; uniform vec3 moon_dir;
uniform float moon_brightness; uniform float moon_brightness;
uniform sampler2D diffuseMap; uniform sampler2D diffuseMap;
...@@ -53,11 +52,7 @@ void main() ...@@ -53,11 +52,7 @@ void main()
discard; discard;
} }
c.rgb *= moonlight_color.rgb;
c.rgb *= moon_brightness; c.rgb *= moon_brightness;
c.rgb *= fade;
c.a *= fade; c.a *= fade;
frag_data[0] = vec4(0); frag_data[0] = vec4(0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment