veloren/assets/voxygen/shaders/include/cloud/none.glsl

15 lines
457 B
Plaintext
Raw Normal View History

#include <lod.glsl>
2022-09-24 11:33:26 +00:00
#include <sky.glsl>
2020-10-21 21:05:25 +00:00
vec3 get_cloud_color(vec3 surf_color, vec3 dir, vec3 origin, float time_of_day, float max_dist, float quality) {
// Underwater light attenuation
surf_color = water_diffuse(surf_color, dir, max_dist);
2022-09-24 11:33:26 +00:00
if (max_dist < DIST_CAP) {
vec3 sky_light = get_sky_light(dir, time_of_day, false);
surf_color = mix(sky_light, surf_color, 1.0 / exp(max_dist / 5000.0));
}
2020-10-21 21:05:25 +00:00
return surf_color;
}