diff options
author | paramat <paramat@users.noreply.github.com> | 2017-06-20 04:55:32 +0100 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2017-06-21 01:58:04 +0100 |
commit | b8237099b269011f16a8055a61745876768f3f4d (patch) | |
tree | 88cbfcf96c769e6d5cbb5b7e943453571a4fc330 /minetest.conf.example | |
parent | e6a9e6066afc369f01c046de8e3a90a4b042286c (diff) | |
download | minetest-b8237099b269011f16a8055a61745876768f3f4d.tar.gz minetest-b8237099b269011f16a8055a61745876768f3f4d.tar.bz2 minetest-b8237099b269011f16a8055a61745876768f3f4d.zip |
Mgv5/v7/fractal: Add 'large_cave_depth' parameter to replace fixed value
The value cannot be fixed because we can shift terrain vertically.
This also makes these mapgens consistent with mgflat and mgvalleys which
have 'large_cave_depth' parameters.
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index d3831defa..9a71ec562 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -1256,6 +1256,10 @@ # type: float # mgv5_cave_width = 0.125 +# Y of upper limit of large pseudorandom caves. +# type: int +# mgv5_large_cave_depth = -256 + # Y-level of cavern upper limit. # type: int # mgv5_cavern_limit = -256 @@ -1371,6 +1375,10 @@ # type: float # mgv7_cave_width = 0.09 +# Y of upper limit of large pseudorandom caves. +# type: int +# mgv7_large_cave_depth = -33 + # Controls the density of floatland mountain terrain. # Is an offset added to the 'np_mountain' noise value. # type: float @@ -1522,6 +1530,10 @@ # type: float # mgfractal_cave_width = 0.09 +# Y of upper limit of large pseudorandom caves. +# type: int +# mgfractal_large_cave_depth = -33 + # Choice of 18 fractals from 9 formulas. # 1 = 4D "Roundy" mandelbrot set. # 2 = 4D "Roundy" julia set. |