cartographer/chunk_api.lua
2020-06-13 07:50:34 -04:00

18 lines
487 B
Lua

local CHUNK_SIZE = 16;
-- Contains functions for converting coordinates between world units and the
-- unit used by cartographer's maps
return {
-- Convert world coordinates to map coordinates
-- coord: The coordinate value
to = function(coord)
return math.floor(coord / CHUNK_SIZE);
end,
-- Convert map coordinates to world coordinates
-- coord: The coordinate value
from = function(coord)
return math.floor(coord * CHUNK_SIZE);
end
};