From 3b1d5f080b013ab306fb9d356d6e3337c75c40c6 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Fri, 9 Aug 2019 16:32:30 +0100 Subject: Add preset terrain generation options --- src/main/resources/presets.json | 51 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/main/resources/presets.json (limited to 'src/main/resources') 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 -- cgit v1.2.3