diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2019-08-09 16:32:30 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2019-08-09 16:32:30 +0100 |
| commit | 3b1d5f080b013ab306fb9d356d6e3337c75c40c6 (patch) | |
| tree | a222c594063ee69ea0e407d201be78531937501e /src/main/resources | |
| parent | b98cfd129bea60c2c870c0155b70361e25e1dcad (diff) | |
| download | terrain-3b1d5f080b013ab306fb9d356d6e3337c75c40c6.tar.xz terrain-3b1d5f080b013ab306fb9d356d6e3337c75c40c6.zip | |
Add preset terrain generation options
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/presets.json | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/main/resources/presets.json b/src/main/resources/presets.json new file mode 100644 index 0000000..1cefb98 --- /dev/null +++ b/src/main/resources/presets.json @@ -0,0 +1,51 @@ +{ + "preset": "Mountainous", + "remembered": { + "Mountain": { + "0": { + "zoomFactor": 80, + "scalingFactor": 2.9, + "scalingType": "EXPONENTIAL", + "autoRotate": false, + "waterHeight": 4, + "snowHeightThreshold": 16, + "showWireframe": false + } + }, + "Flat": { + "0": { + "zoomFactor": 100, + "scalingFactor": 2.5, + "scalingType": "EXPONENTIAL", + "autoRotate": false, + "waterHeight": 3, + "snowHeightThreshold": 15, + "showWireframe": false + } + }, + "Dense": { + "0": { + "zoomFactor": 45, + "scalingFactor": 2.8, + "scalingType": "EXPONENTIAL", + "autoRotate": false, + "waterHeight": 3, + "snowHeightThreshold": 15, + "showWireframe": false + } + }, + "Marsh": { + "0": { + "zoomFactor": 55, + "scalingFactor": 2.5, + "scalingType": "LINEAR", + "autoRotate": false, + "waterHeight": 3, + "snowHeightThreshold": 15, + "showWireframe": false + } + } + }, + "closed": false, + "folders": {} +}
\ No newline at end of file |