Refraction fix

fix the refraction. hopefully.
This commit is contained in:
Xonk
2023-05-09 16:16:41 -04:00
parent 52466e8e35
commit 82668ef211
7 changed files with 32 additions and 19 deletions

View File

@ -44,5 +44,5 @@ float stars(vec3 fragpos){
float elevation = clamp(fragpos.y,0.,1.);
vec2 uv = fragpos.xz/(1.5+elevation);
return StableStarField(uv*1500.,0.999)*0.5*(0.3-0.3*rainStrength);
return StableStarField(uv*1000.,0.999)*0.5*(0.3-0.3*rainStrength);
}