mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
21 lines
986 B
Lua
21 lines
986 B
Lua
-- ███ ███ ██ ██████ ██████ ██████ ███████
|
|
-- ████ ████ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ██ ████ ██ ██ ██ ██ ██████ ██ ██ ███████
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ██ ██ ██ ██████ ██ ██████ ███████
|
|
local wea = worldeditadditions
|
|
worldedit.register_command("midpos", {
|
|
params = "",
|
|
description = "Return the mid point of current selection.",
|
|
privs = { worldedit = true },
|
|
require_pos = 2,
|
|
parse = function(params_text)
|
|
return true
|
|
end,
|
|
func = function(name, params_text)
|
|
local str = "The centre of the current selection is at "
|
|
local vec = wea.vector.mean(worldedit.pos1[name],worldedit.pos2[name])
|
|
|
|
return true, str .. wea.table.tostring(vec)
|
|
end,
|
|
})
|