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