2021-03-12 23:47:10 +00:00
|
|
|
local wea = worldeditadditions
|
2021-02-23 22:56:56 +00:00
|
|
|
|
|
|
|
minetest.register_tool(":worldeditadditions:cloudwand", {
|
2021-03-13 01:55:59 +00:00
|
|
|
description = "WorldEditAdditions far-reaching additive selectior wand",
|
2021-02-23 22:56:56 +00:00
|
|
|
inventory_image = "worldeditadditions_cloudwand.png",
|
|
|
|
|
|
|
|
on_place = function(itemstack, player, pointed_thing)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
-- print("[farwand] on_place", name)
|
|
|
|
-- Right click when pointing at something
|
|
|
|
-- Pointed thing: https://rubenwardy.com/minetest_modding_book/lua_api.html#pointed_thing
|
2021-03-13 02:01:17 +00:00
|
|
|
wea.selection.clear_points(name)
|
2021-02-23 22:56:56 +00:00
|
|
|
end,
|
|
|
|
|
|
|
|
on_use = function(itemstack, player, pointed_thing)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
-- print("[farwand] on_use", name)
|
|
|
|
local looking_pos, node_id = worldeditadditions.farwand.do_raycast(player)
|
2021-03-13 02:01:17 +00:00
|
|
|
wea.selection.add_point(name, looking_pos)
|
2021-02-23 22:56:56 +00:00
|
|
|
-- Left click when pointing at something or nothing
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_secondary_use = function(itemstack, player, pointed_thing)
|
|
|
|
local name = player:get_player_name()
|
|
|
|
-- Right click when pointing at nothing
|
|
|
|
-- print("[farwand] on_secondary_use", name)
|
|
|
|
|
2021-03-13 02:01:17 +00:00
|
|
|
wea.selection.clear_points(name)
|
2021-02-23 22:56:56 +00:00
|
|
|
end
|
|
|
|
})
|