diff options
author | kwolekr <kwolekr@minetest.net> | 2014-12-07 21:57:12 -0500 |
---|---|---|
committer | kwolekr <kwolekr@minetest.net> | 2014-12-07 21:59:32 -0500 |
commit | 2fd3d5202051e03303ac2b8e76976a7c4c8477f3 (patch) | |
tree | c461272b8eef33846cf5773e38c6a8b7716e1d0d /src/cavegen.cpp | |
parent | 638f3a8454941d3f561b1834d47fa07a611454a3 (diff) | |
download | minetest-2fd3d5202051e03303ac2b8e76976a7c4c8477f3.tar.gz minetest-2fd3d5202051e03303ac2b8e76976a7c4c8477f3.tar.bz2 minetest-2fd3d5202051e03303ac2b8e76976a7c4c8477f3.zip |
Add flags and lacunarity as new noise parameters
Add 'absolute value' option to noise map functions
Extend persistence modulation to 3D noise
Extend 'eased' option to noise2d_perlin* functions
Some noise.cpp formatting fixups
Diffstat (limited to 'src/cavegen.cpp')
-rw-r--r-- | src/cavegen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cavegen.cpp b/src/cavegen.cpp index 02eef72d8..4482d09d7 100644 --- a/src/cavegen.cpp +++ b/src/cavegen.cpp @@ -24,7 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "mapgen_v7.h" #include "cavegen.h" -NoiseParams nparams_caveliquids(0, 1, v3f(150.0, 150.0, 150.0), 776, 3, 0.6); +NoiseParams nparams_caveliquids(0, 1, v3f(150.0, 150.0, 150.0), 776, 3, 0.6, 2.0); /////////////////////////////////////////////////////////////////////////////// |