blob: 55527a1653cde77354c7e45ef8020a13d05cf4e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#version 120
uniform vec2 lightLocation;
uniform vec3 lightColor;
uniform float lightStrength;
uniform float screenHeight;
void main(){
float distance = length(lightLocation - gl_FragCoord.xy);
float attenuation = lightStrength / distance;
vec4 color = vec4(attenuation, attenuation, attenuation, (pow(attenuation, 3)) * vec4(lightColor, 2))+.5;
gl_FragColor = color;
}
|