mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 10:43:14 +00:00
Fixes
This commit is contained in:
parent
d00ab3f8d6
commit
35cf439592
@ -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)
|
||||||
|
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user