No more true height streams

This commit is contained in:
cyberpwn 2021-09-13 09:46:55 -04:00
parent eeab12ed86
commit 7096fcd43e
2 changed files with 0 additions and 10 deletions

View File

@ -167,10 +167,6 @@ public class IrisDimension extends IrisRegistrant {
@MaxNumber(512)
@Desc("Zoom in or out the biome size. Higher = bigger biomes")
private double biomeZoom = 5D;
@MinNumber(0.0001)
@MaxNumber(512)
@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 = 1D;
@MinNumber(0)
@MaxNumber(360)
@Desc("You can rotate the input coordinates by an angle. This can make terrain appear more natural (less sharp corners and lines). This literally rotates the entire dimension by an angle. Hint: Try 12 degrees or something not on a 90 or 45 degree angle.")

View File

@ -29,12 +29,6 @@ public enum IrisEngineStreamType {
@Desc("Represents the given slope at the x, z coordinates")
SLOPE((f) -> f.getComplex().getSlopeStream()),
@Desc("Represents the real terrain height ignoring fluid, this includes carving, caves & noise features into this stream.")
TRUE_HEIGHT((f) -> f.getComplex().getTrueHeightStream().forceDouble()),
@Desc("Represents the real terrain height including fluid, this includes carving, caves & noise features into this stream.")
TRUE_HEIGHT_OR_FLUID((f) -> f.getComplex().getTrueHeightStream().forceDouble().max(f.getComplex().getFluidHeight())),
@Desc("Represents the base generator height at the given position. This includes only the biome generators / interpolation and noise features but does not include carving, caves.")
HEIGHT((f) -> f.getComplex().getHeightStream()),