Revert "More jitter DOF stuff"

This reverts commit 92943470f4.
This commit is contained in:
Xonk
2023-01-15 23:50:43 -05:00
parent 92943470f4
commit a9be7b0da5
8 changed files with 19 additions and 1128 deletions

View File

@ -42,7 +42,7 @@ float StableStarField( in vec2 vSamplePos, float fThreshhold )
float stars(vec3 fragpos){
float elevation = clamp(fragpos.y,0.,1.);
vec2 uv = fragpos.xz/(2.0+elevation);
vec2 uv = fragpos.xz/(1.5+elevation);
return StableStarField(uv*1500.,0.999)*0.5*(0.3-0.3*rainStrength);
}