This commit is contained in:
Daniel Mills 2020-11-04 18:20:53 -05:00
parent d00ab3f8d6
commit 35cf439592
2 changed files with 6 additions and 1 deletions

View File

@ -254,7 +254,7 @@ public class IrisDimension extends IrisRegistrant
@MaxNumber(512) @MaxNumber(512)
@DontObfuscate @DontObfuscate
@Desc("Zoom in or out the terrain. This stretches the terrain. Due to performance improvements, Higher than 2.0 may cause weird rounding artifacts. Lower = more terrain changes per block. Its a true zoom-out.") @Desc("Zoom in or out the terrain. This stretches the terrain. Due to performance improvements, Higher than 2.0 may cause weird rounding artifacts. Lower = more terrain changes per block. Its a true zoom-out.")
private double terrainZoom = 2D; private double terrainZoom = 1D;
@MinNumber(0) @MinNumber(0)
@MaxNumber(360) @MaxNumber(360)

View File

@ -451,6 +451,11 @@ public class IrisObject extends IrisRegistrant
y = yv; y = yv;
} }
if(y <= 0)
{
// TODO: return -1;
}
if(yv >= 0 && config.isBottom()) if(yv >= 0 && config.isBottom())
{ {
y += Math.floorDiv(h, 2); y += Math.floorDiv(h, 2);