diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 01:05:57 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 01:05:57 -0400 |
commit | ea35ad60506407040f7b9fae65c5bdc18f9576bb (patch) | |
tree | 7933d683cf84c6cd27ae2568404ed6026637b5b8 /Shaders | |
parent | e8d3e8f0522b6d7896f1e3d330c70af5376f7c4c (diff) |
Added Lua update function that allows certain entities to update every loop
Diffstat (limited to 'Shaders')
-rw-r--r-- | Shaders/world.frag | 51 |
1 files changed, 5 insertions, 46 deletions
diff --git a/Shaders/world.frag b/Shaders/world.frag index 4a17a93..85941f2 100644 --- a/Shaders/world.frag +++ b/Shaders/world.frag @@ -16,9 +16,11 @@ out vec4 FragColor; uniform vec3 LightPos[32]; uniform vec4 LightColor[32]; uniform int LightNum; +uniform vec4 AmbientLight; void main() { + // Quadratic light falloff vec3 Falloff = vec3(0.1, 0.2, 0.0); vec4 DiffuseColor = texture2D(textu, texCoord); @@ -37,9 +39,10 @@ void main() vec3 N = normalize(NormalMap * 2.0 - 1.0); vec3 L = normalize(LightDir); - vec3 Diffuse = (LightColor[i].rgb * LightColor[i].a) * max(dot(N, L), 0.0); + vec3 Diffuse = + (LightColor[i].rgb * LightColor[i].a) * max(dot(N, L), 0.0); - vec3 Ambient = vec3(0.0); + vec3 Ambient = AmbientLight.rgb * AmbientLight.a; float Attenuation = 1.0 / (Falloff.x + (Falloff.y * D) + (Falloff.z * D * D)); @@ -52,47 +55,3 @@ void main() FragColor = vec4(SumLight, DiffuseColor.a); }; - -/* - vec4 normalMap = texture2D(normu, texCoord); - vec3 normal = normalMap.xyz * 2.0 - 1.0; - - if (pixTex.a < 0.1f) - discard; - - vec4 shadeColor = vec4(0.0f, 0.0f, 0.0f, 0.0f); - - float dist = length(light.xy - fragCoord.xy); - if (dist < light.w) { - float attenuation = clamp(1.0f - dist*dist/(light.w*light.w), 0.0f, 1.0f); - attenuation *= attenuation; - shadeColor += vec4(attenuation, attenuation, attenuation, 1.0f) * vec4(normal.xyz, 1); - //shadeColor = vec4(1.0) + 0.1*normal; - //shadeColor = vec4(1.0); - } - - //FragColor = pixTex * shadeColor; - FragColor = vec4(normal.xyz, 1); -} -*/ - -/* - vec2 texLoc = vec2(texCoord.x, 1-texCoord.y); - vec4 pixTex = texture2D(texture, texLoc); - if (pixTex.a < 0.1f) - discard; - - vec4 shadeColor = vec4(0.0f, 0.0f, 0.0f, 0.0f); - if (lightImpact > 0.0f) { - for (int i = 0; i < lightSize; i++) { - vec2 loc = light[i].xy; - float dist = length(loc - fragCoord.xy); - if (dist < light[i].w) { - float attenuation = clamp(1.0f - dist*dist/(light[i].w*light[i].w), 0.0f, 1.0f); - attenuation *= attenuation; - shadeColor += (vec4(attenuation, attenuation, attenuation, 0.0f) * vec4(lightColor[i])) * lightImpact; - } - } - } - shadeColor += ambientLight; -*/ |