2015-10-30 02:48:37 -04:00
|
|
|
-- Minetest: builtin/constants.lua
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Constants values for use with the Lua API
|
|
|
|
--
|
|
|
|
|
2016-07-23 07:29:53 -04:00
|
|
|
-- mapnode.h
|
2015-11-07 03:27:33 -05:00
|
|
|
-- Built-in Content IDs (for use with VoxelManip API)
|
|
|
|
core.CONTENT_UNKNOWN = 125
|
|
|
|
core.CONTENT_AIR = 126
|
|
|
|
core.CONTENT_IGNORE = 127
|
|
|
|
|
2016-07-23 07:29:53 -04:00
|
|
|
-- emerge.h
|
2015-10-30 02:48:37 -04:00
|
|
|
-- 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
|
2016-07-23 07:29:53 -04:00
|
|
|
|
|
|
|
-- constants.h
|
|
|
|
core.MAP_BLOCKSIZE = 16
|