mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 13:52:31 +01:00
define insulator clips even if Unified Dyes is not installed
(just don't put UD-related stuff into their node defs)
This commit is contained in:
parent
6341ac9638
commit
018d66f791
@ -102,31 +102,21 @@ if minetest.get_modpath("moreblocks") then
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if minetest.get_modpath("unifieddyes") then
|
local iclip_def = {
|
||||||
|
|
||||||
minetest.register_node(":technic:insulator_clip", {
|
|
||||||
description = "Insulator/cable clip",
|
description = "Insulator/cable clip",
|
||||||
drawtype = "mesh",
|
drawtype = "mesh",
|
||||||
mesh = "technic_insulator_clip.obj",
|
mesh = "technic_insulator_clip.obj",
|
||||||
tiles = {"technic_insulator_clip.png"},
|
tiles = {"technic_insulator_clip.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, ud_param2_colorable = 1},
|
groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1 },
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
paramtype2 = "colorwallmounted",
|
}
|
||||||
palette = "unifieddyes_palette_colorwallmounted.png",
|
|
||||||
after_place_node = unifieddyes.fix_rotation,
|
|
||||||
after_dig_node = unifieddyes.after_dig_node,
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_node(":technic:insulator_clip_fencepost", {
|
local iclipfence_def = {
|
||||||
description = "Insulator/cable clip",
|
description = "Insulator/cable clip",
|
||||||
tiles = {"technic_insulator_clip.png"},
|
tiles = {"technic_insulator_clip.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "color",
|
|
||||||
palette = "unifieddyes_palette_extended.png",
|
|
||||||
on_construct = unifieddyes.on_construct,
|
|
||||||
after_dig_node = unifieddyes.after_dig_node,
|
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "connected",
|
type = "connected",
|
||||||
@ -152,10 +142,30 @@ if minetest.get_modpath("unifieddyes") then
|
|||||||
{1/8,-5/16,-1/16,1/2,-3/16,1/16}},
|
{1/8,-5/16,-1/16,1/2,-3/16,1/16}},
|
||||||
},
|
},
|
||||||
connects_to = {"group:fence", "group:wood", "group:tree"},
|
connects_to = {"group:fence", "group:wood", "group:tree"},
|
||||||
groups = {fence=1, choppy=1, snappy=1, oddly_breakable_by_hand=1, ud_param2_colorable = 1},
|
groups = {fence=1, choppy=1, snappy=1, oddly_breakable_by_hand=1 },
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
place_param2 = 171 -- medium amber, low saturation, closest color to default:wood
|
}
|
||||||
})
|
|
||||||
|
if not minetest.get_modpath("unifieddyes") then
|
||||||
|
minetest.register_node(":technic:insulator_clip", iclip_def)
|
||||||
|
minetest.register_node(":technic:insulator_clip_fencepost", iclipfence_def)
|
||||||
|
else
|
||||||
|
iclip_def.paramtype2 = "colorwallmounted"
|
||||||
|
iclip_def.palette = "unifieddyes_palette_colorwallmounted.png"
|
||||||
|
iclip_def.after_place_node = unifieddyes.fix_rotation
|
||||||
|
iclip_def.after_dig_node = unifieddyes.after_dig_node
|
||||||
|
iclip_def.groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, ud_param2_colorable = 1}
|
||||||
|
|
||||||
|
iclipfence_def.paramtype2 = "color"
|
||||||
|
iclipfence_def.palette = "unifieddyes_palette_extended.png"
|
||||||
|
iclipfence_def.on_construct = unifieddyes.on_construct
|
||||||
|
iclipfence_def.after_dig_node = unifieddyes.after_dig_node
|
||||||
|
iclipfence_def.groups = {fence=1, choppy=1, snappy=1, oddly_breakable_by_hand=1, ud_param2_colorable = 1}
|
||||||
|
iclipfence_def.place_param2 = 171 -- medium amber, low saturation, closest color to default:wood
|
||||||
|
|
||||||
|
minetest.register_node(":technic:insulator_clip", iclip_def)
|
||||||
|
minetest.register_node(":technic:insulator_clip_fencepost", iclipfence_def)
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "technic:insulator_clip",
|
output = "technic:insulator_clip",
|
||||||
@ -174,5 +184,3 @@ if minetest.get_modpath("unifieddyes") then
|
|||||||
{ "technic:raw_latex", "default:fence_wood", "technic:raw_latex"},
|
{ "technic:raw_latex", "default:fence_wood", "technic:raw_latex"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
end
|
|
||||||
|
Loading…
Reference in New Issue
Block a user