use fancy new tectonic stuff for biome stage loading

This commit is contained in:
dfsek
2021-01-30 15:23:29 -07:00
parent b99fabcf1d
commit 762c3064d9
17 changed files with 222 additions and 112 deletions
@@ -19,4 +19,8 @@ public class ExpanderStage implements Stage {
public BiomeHolder apply(BiomeHolder in) {
return in.expand(expander);
}
public enum Type {
FRACTAL
}
}
@@ -20,4 +20,8 @@ public class MutatorStage implements Stage {
in.mutate(mutator);
return in;
}
public enum Type {
REPLACE, REPLACE_LIST, BORDER, BORDER_LIST, SMOOTH
}
}