diff options
author | kwolekr <mirrorisim@gmail.com> | 2012-12-18 13:23:16 -0500 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2013-01-21 21:41:37 +0200 |
commit | 96898c179458174f858bab6363636ef231b49865 (patch) | |
tree | ff40e2830df3bd491774714bfcc85dc9d56d3f94 /src/noise.h | |
parent | 11afcbff69c95915e5142bc4b55636ff6358ece9 (diff) | |
download | minetest-96898c179458174f858bab6363636ef231b49865.tar.gz minetest-96898c179458174f858bab6363636ef231b49865.tar.bz2 minetest-96898c179458174f858bab6363636ef231b49865.zip |
Add initial Lua biomedef support, fixed biome selection
Diffstat (limited to 'src/noise.h')
-rw-r--r-- | src/noise.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/noise.h b/src/noise.h index 6e5120003..0ab162b73 100644 --- a/src/noise.h +++ b/src/noise.h @@ -95,6 +95,7 @@ public: int seed); float *perlinMap2D(float x, float y); float *perlinMap3D(float x, float y, float z); + void transformNoiseMap(); }; // Return value: -1 ... 1 |