pick_and_place/handle_node.lua
2023-06-23 21:33:28 +02:00

34 lines
811 B
Lua

local function on_rightclick(pos, _, _, itemstack)
if not itemstack:is_empty() then
-- not an empty hand
return
end
local meta = minetest.get_meta(pos)
-- relative positions
local rel_pos1 = minetest.string_to_pos(meta:get_string("pos1"))
local rel_pos2 = minetest.string_to_pos(meta:get_string("pos2"))
-- absolute positions
local pos1 = vector.add(pos, rel_pos1)
local pos2 = vector.add(pos, rel_pos2)
return pick_and_place.create_tool(pos1, pos2)
end
minetest.register_node("pick_and_place:handle", {
description = "Pick and place handle",
tiles = {"pick_and_place_plus.png"},
drawtype = "allfaces",
use_texture_alpha = "blend",
paramtype = "light",
sunlight_propagates = true,
on_rightclick = on_rightclick,
drop = "",
groups = {
oddly_breakable_by_hand = 3
}
})