9
0
mirror of https://github.com/IrisDimensions/earthworld.git synced 2025-12-29 19:59:10 +00:00
This commit is contained in:
Daniel Mills
2020-07-22 15:30:04 -04:00
parent 3196b64f95
commit ad6763780a
6 changed files with 148 additions and 0 deletions

27
dev.test/biomes/a.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "Land",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"GRASS_BLOCK"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"generators":[
{
"generator": "plain",
"min": 12,
"max": 12
}
],
"derivative": "JUNGLE_EDGE"
}

27
dev.test/biomes/b.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "Land",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"STONE"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"generators":[
{
"generator": "plain",
"min": 12,
"max": 12
}
],
"derivative": "JUNGLE_EDGE"
}

View File

@@ -0,0 +1,27 @@
{
"name": "Beach",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"SAND"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"generators":[
{
"generator": "plain",
"min": -1,
"max": -1
}
],
"derivative": "JUNGLE_EDGE"
}

View File

@@ -0,0 +1,27 @@
{
"name": "Sea",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"EMERALD_BLOCK"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"generators":[
{
"generator": "plain",
"min": -8,
"max": -8
}
],
"derivative": "OCEAN"
}

View File

@@ -0,0 +1,25 @@
{
"environment": "NORMAL",
"fluidHeight": 63,
"biomeZoom": 4,
"dimensionAngleDeg": 12,
"terrainZoom": 1,
"interpolationFunction": "BILINEAR",
"interpolationScale": 80,
"interpolationSurfaceFunction": "BILINEAR",
"interpolationSurfaceScale": 40,
"roughnessHeight": 1,
"coordFractureZoom": 2,
"coordFractureDistance": 222,
"hermiteTension": 1,
"landZoom": 4,
"debugFastPregen": true,
"seaZoom": 0.3,
"continentZoom": 0.2,
"hermiteBias": 0.5,
"placeObjects": true,
"roughnessZoom": 1,
"regions": [
"test"
]
}

View File

@@ -0,0 +1,15 @@
{
"name": "Brian",
"shoreRatio": 0.05,
"biomeImplosionRatio": 0.25,
"landBiomes": [
"a",
"b"
],
"seaBiomes": [
"ocean"
],
"shoreBiomes": [
"beach"
]
}