Fog calculation simplified

This commit is contained in:
MihailRis
2023-11-13 04:58:39 +03:00
parent c2f130c931
commit 744e473e47
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -28,6 +28,6 @@ void main(){
a_color = vec4(pow(light, vec3(u_gamma)),1.0f);
a_texCoord = v_texCoord;
a_color.rgb += u_skyLightColor * v_light.a;
a_distance = pow(length(viewmodelpos), 1.5);
a_distance = length(viewmodelpos);
gl_Position = u_proj * viewmodelpos;
}