Decorate "spot": Shore Line

This commit is contained in:
Daniel Mills 2020-07-25 14:03:12 -04:00
parent e3747d3cfd
commit f8cb0caa80
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package ninja.bytecode.iris.object;
public enum DecorationPart
{
NONE,
SHORE_LINE,
}

View File

@ -23,6 +23,9 @@ public class IrisBiomeDecorator
@Desc("If this decorator has a height more than 1 this changes how it picks the height between your maxes. Scatter = random, Wispy = wavy heights")
private Dispersion verticalVariance = Dispersion.SCATTER;
@Desc("Tells iris where this decoration is a part of. I.e. SHORE_LINE")
private DecorationPart partOf = DecorationPart.NONE;
@Desc("The minimum repeat stack height (setting to 3 would stack 3 of <block> on top of each other")
private int stackMin = 1;