]> git.lizzy.rs Git - minetest.git/blobdiff - doc/lua_api.txt
Fix compiling if no endian.h found
[minetest.git] / doc / lua_api.txt
index 698efbe8af2d0ad98e7b8485df392ddd55ecc79c..e4a016b1a02dbde269606c6dccb0036bf3fdf1d6 100644 (file)
@@ -2796,3 +2796,16 @@ ParticleSpawner definition (add_particlespawner)
     playername = "singleplayer"
     ^ Playername is optional, if specified spawns particle only on the player's client
 }
+
+NoiseParams definition (PerlinNoiseMap)
+{
+    offset = 0,
+    scale = 0,
+    spread = 0,
+    seed = 0,
+    octaves = 0,
+    ^ A higher value will result in more details, this means more operations
+    persist = 0,
+    eased = false
+    ^ Whether it should create curves in 3D perlin maps
+}