summary refs log tree commit diff
path: root/res
diff options
context:
space:
mode:
authoriurii <[email protected]>2024-09-07 21:04:05 +0200
committeriurii <[email protected]>2024-09-07 21:04:05 +0200
commit0330dd5bd261912c49bfe1656436f5f16415ccc2 (patch)
tree72acbe628538690bdab2859d0c5e9177d43896cb /res
parent8e77fd544fa40d787f34ed667d5d818ca4bfc6e9 (diff)
downloadfunhalla-0330dd5bd261912c49bfe1656436f5f16415ccc2.tar.gz
upd
Diffstat (limited to 'res')
-rw-r--r--res/shaders/colors.fs12
1 files changed, 12 insertions, 0 deletions
diff --git a/res/shaders/colors.fs b/res/shaders/colors.fs
index 56762e1..142d843 100644
--- a/res/shaders/colors.fs
+++ b/res/shaders/colors.fs
@@ -6,6 +6,7 @@ struct Material {
   sampler2D diffuse;
   sampler2D specular;
   float shininess;
+
 };
 
 struct Light {
@@ -13,6 +14,10 @@ struct Light {
   vec3 ambient;
   vec3 diffuse;
   vec3 specular;
+
+  float constant;
+  float linear;
+  float quadratic;
 };
 
 in vec3 Normal;
@@ -39,6 +44,13 @@ void main() {
   float spec = pow(max(dot(view_dir, reflect_dir), 0.0), material.shininess);
   vec3 specular = light.specular * spec * texture(material.specular, TexCoords).rgb;
 
+  float distance = length(light.positon - FragPos);
+  float attenuation = 1.0 / (light.constant + light.linear * distance + light.quadratic * (distance * distance));
+
+  abient *= attenuation;
+  diffuse *= attenuation;
+  specular *= attenuation;
+
   vec3 result = ambient + diffuse + specular;
   FragColor = vec4(result, 1.0);
 }