9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2026-01-06 15:41:43 +00:00

Fixes & Tweaks to interp

This commit is contained in:
Daniel Mills
2020-08-18 01:16:45 -04:00
parent d00bb65554
commit f4bd928140
19 changed files with 68 additions and 19 deletions

View File

@@ -1,4 +1,15 @@
NONE
BILINEAR
BILINEAR_BEZIER
BILINEAR_PARAMETRIC_2
BILINEAR_PARAMETRIC_4
BILINEAR_PARAMETRIC_1_5
BICUBIC
HERMITE
CATMULL_ROM_SPLINE
HERMITE_TENSE
HERMITE_LOOSE
HERMITE_LOOSE_HALF_POSITIVE_BIAS
HERMITE_LOOSE_HALF_NEGATIVE_BIAS
HERMITE_LOOSE_FULL_POSITIVE_BIAS
HERMITE_LOOSE_FULL_NEGATIVE_BIAS

23
flat/biomes/f2.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "Flat 2",
"derivative": "PLAINS",
"layers": [
{
"maxHeight": 10,
"minHeight": 10,
"palette": [
"REDSTONE_BLOCK"
]
},
{
"palette": ["DIRT"],
"minHeight": 2,
"maxHeight": 2
}
],
"generators": [{
"min": 30,
"max": 50,
"generator": "flat"
}]
}

View File

@@ -3,8 +3,10 @@
"derivative": "PLAINS",
"layers": [
{
"maxHeight": 10,
"minHeight": 10,
"palette": [
"GRASS_BLOCK"
"EMERALD_BLOCK"
]
},
{
@@ -14,8 +16,8 @@
}
],
"generators": [{
"min": 10,
"max": 10,
"min": 9,
"max": 15,
"generator": "flat"
}]
}

View File

@@ -9,6 +9,7 @@
"caves": false,
"placeObjects": false,
"coordFractureDistance": 24,
"landChance": 1,
"fluidHeight": 0,
"vanillaStructures": true
}

View File

@@ -1,11 +1,12 @@
{
"seed": 1,
"interpolationFunction": "BILINEAR",
"interpolationScale": 5,
"interpolationFunction": "HERMITE_LOOSE",
"interpolationScale": 3,
"composite": [
{
"style": {
"style": "FLAT"
"style": "SIMPLEX",
"zoom": 0.3
},
"seed": 10
}

View File

@@ -1,6 +1,6 @@
{
"shoreBiomes": ["flat"],
"landBiomes": ["flat"],
"landBiomes": ["flat", "f2"],
"seaBiomes": ["flat"],
"name": "Flat"
}