reorginized settings.glsl and removed old settings. removed all text descriptions so i can write them in the lang files

This commit is contained in:
Xonk
2023-07-02 19:10:48 -04:00
parent 5f7f23c2a9
commit eedb689348
11 changed files with 346 additions and 418 deletions

View File

@ -146,7 +146,7 @@ vec4 getVolumetricRays(
#endif
//Water droplets(fog)
float density = densityVol*ATMOSPHERIC_DENSITY*mu*300.;
float density = densityVol*mu*300.;
//Just air
vec2 airCoef = exp(-max(progressW.y-SEA_LEVEL,0.0)/vec2(8.0e3, 1.2e3)*vec2(6.,7.0)) * 24 * Haze_amount;
@ -305,7 +305,7 @@ vec4 InsideACloudFog(
float densityVol = cloudVol(progressW);
//Water droplets(fog)
float density = densityVol*ATMOSPHERIC_DENSITY*mu*300.;
float density = densityVol*mu*300.;
//Just air
vec2 airCoef = exp(-max(progressW.y-SEA_LEVEL,0.0)/vec2(8.0e3, 1.2e3)*vec2(6.,7.0)) * 24 * Haze_amount;