]> git.lizzy.rs Git - minetest.git/blobdiff - builtin/game/constants.lua
Save metainfo for falling nodes
[minetest.git] / builtin / game / constants.lua
index d0b7c753cf88283c095629ffe15f8ec432e0a3ac..50c515b24875b6fefc2abd68787b58b9fdf1a1db 100644 (file)
@@ -4,14 +4,24 @@
 -- Constants values for use with the Lua API
 --
 
+-- mapnode.h
 -- Built-in Content IDs (for use with VoxelManip API)
 core.CONTENT_UNKNOWN = 125
 core.CONTENT_AIR     = 126
 core.CONTENT_IGNORE  = 127
 
+-- emerge.h
 -- Block emerge status constants (for use with core.emerge_area)
 core.EMERGE_CANCELLED   = 0
 core.EMERGE_ERRORED     = 1
 core.EMERGE_FROM_MEMORY = 2
 core.EMERGE_FROM_DISK   = 3
 core.EMERGE_GENERATED   = 4
+
+-- constants.h
+-- Size of mapblocks in nodes
+core.MAP_BLOCKSIZE = 16
+
+-- light.h
+-- Maximum value for node 'light_source' parameter
+core.LIGHT_MAX = 14