2024-09-15 16:15:22 +00:00
|
|
|
local wea_c = worldeditadditions_core
|
|
|
|
local Vector3 = wea_c.Vector3
|
|
|
|
|
|
|
|
-- ███████ ██████ ███████ ███ ██ ████████ ███████ ██████
|
|
|
|
-- ██ ██ ██ ████ ██ ██ ██ ██ ██
|
|
|
|
-- ███████ ██ █████ ██ ██ ██ ██ █████ ██████
|
|
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
|
|
-- ███████ ██████ ███████ ██ ████ ██ ███████ ██ ██
|
|
|
|
worldeditadditions_core.register_command("scentre", {
|
|
|
|
params = "",
|
|
|
|
description = "Set WorldEdit region positions 1 and 2 to the centre of the current selection.",
|
|
|
|
privs = {worldedit=true},
|
|
|
|
require_pos = 2,
|
|
|
|
parse = function(params_text)
|
|
|
|
return true
|
|
|
|
end,
|
|
|
|
func = function(name)
|
|
|
|
local mean = Vector3.mean(
|
|
|
|
Vector3.clone(wea_c.pos.get(name, 1)),
|
|
|
|
Vector3.clone(wea_c.pos.get(name, 2))
|
|
|
|
)
|
|
|
|
local pos1, pos2 = Vector3.clone(mean), Vector3.clone(mean)
|
|
|
|
|
|
|
|
pos1 = pos1:floor()
|
|
|
|
pos2 = pos2:ceil()
|
|
|
|
|
|
|
|
wea_c.pos.set_all(name, {pos1, pos2})
|
|
|
|
|
2024-10-01 15:03:21 +00:00
|
|
|
return true, "Position 1 to "..pos1..", Position 2 to "..pos2
|
2024-09-15 16:15:22 +00:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- lua print(vecs.mean.x..", "..vecs.mean.y..", "..vecs.mean.z)
|