mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-16 18:01:40 +00:00
Use range-based fog instead of z-plane based.
This commit is contained in:
parent
c9e7a27eeb
commit
0ad40fd484
4 changed files with 6 additions and 6 deletions
|
@ -197,13 +197,13 @@ void main(void)
|
|||
#if MATERIAL_TYPE == TILE_MATERIAL_LIQUID_TRANSPARENT
|
||||
float alpha = gl_Color.a;
|
||||
if (fogDistance != 0.0) {
|
||||
float d = max(0.0, min(vPosition.z / fogDistance * 1.5 - 0.6, 1.0));
|
||||
float d = max(0.0, min(length(eyeVec) / fogDistance * 1.5 - 0.6, 1.0));
|
||||
alpha = mix(alpha, 0.0, d);
|
||||
}
|
||||
col = vec4(col.rgb, alpha);
|
||||
#else
|
||||
if (fogDistance != 0.0) {
|
||||
float d = max(0.0, min(vPosition.z / fogDistance * 1.5 - 0.6, 1.0));
|
||||
float d = max(0.0, min(length(eyeVec) / fogDistance * 1.5 - 0.6, 1.0));
|
||||
col = mix(col, skyBgColor, d);
|
||||
}
|
||||
col = vec4(col.rgb, base.a);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue