adjusted number of steps used for curvature and fixed height jump

This commit is contained in:
Valerie Wolfe 2024-04-18 16:44:49 -04:00
parent 0cfb16e33a
commit 0e0d7743ce

View file

@ -8,7 +8,7 @@ void world_curvature() {
gl_Position.y -= 2 * z / worldRadius;
#elif worldCurvature == 2
vec2 xz = gl_Position.xz;
gl_Position.y -= ceil(( dot(xz, xz) * 5 ) / worldRadius) / 5;
gl_Position.y -= round(( dot(xz, xz) / worldRadius ) * 8) / 8;
#endif
}