mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2025-06-28 22:26:37 +02:00
Compare commits
5 Commits
letters-co
...
color-node
Author | SHA1 | Date | |
---|---|---|---|
89b0ed7366 | |||
860d3f53d0 | |||
c5c587d01a | |||
f94b900fbe | |||
3d7910f2fd |
@ -21,6 +21,6 @@ read_globals = {
|
||||
"screwdriver",
|
||||
"minetest",
|
||||
"mesecon",
|
||||
"unifieddyes"
|
||||
|
||||
"unifieddyes",
|
||||
"letters"
|
||||
}
|
||||
|
10
init.lua
10
init.lua
@ -32,3 +32,13 @@ dofile(MP.."/models.lua")
|
||||
dofile(MP.."/octagon_panes.lua")
|
||||
dofile(MP.."/forcefield.lua")
|
||||
dofile(MP.."/crafts.lua")
|
||||
|
||||
if minetest.get_modpath("unifieddyes") then
|
||||
-- register colored nodes
|
||||
dofile(MP.."/nodes_colored.lua")
|
||||
end
|
||||
|
||||
if minetest.get_modpath("letters") then
|
||||
-- register letter nodes
|
||||
dofile(MP.."/letters.lua")
|
||||
end
|
11
letters.lua
Normal file
11
letters.lua
Normal file
@ -0,0 +1,11 @@
|
||||
letters.register_letters("scifi_nodes", "white2", "scifi_nodes:white2", "Plastic", "scifi_nodes_white2.png", {
|
||||
paramtype2 = "colorwallmounted",
|
||||
palette = "unifieddyes_palette_colorwallmounted.png",
|
||||
groups = {
|
||||
ud_param2_colorable = 1,
|
||||
not_in_creative_inventory = 1,
|
||||
not_in_craft_guide = 1,
|
||||
oddly_breakable_by_hand = 1,
|
||||
attached_node = 1
|
||||
}
|
||||
})
|
3
mod.conf
3
mod.conf
@ -11,5 +11,6 @@ mesecons_torch,
|
||||
mesecons_receiver,
|
||||
basic_materials,
|
||||
dye,
|
||||
unifieddyes
|
||||
unifieddyes,
|
||||
letters
|
||||
"""
|
||||
|
@ -543,6 +543,7 @@ minetest.register_node("scifi_nodes:lightbars", {
|
||||
},
|
||||
drawtype = "nodebox",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
use_texture_alpha = "blend",
|
||||
light_source = minetest.LIGHT_MAX,
|
||||
node_box = {
|
||||
@ -569,6 +570,7 @@ tiles = {{
|
||||
drawtype = "nodebox",
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
@ -589,6 +591,7 @@ tiles = {
|
||||
drawtype = "nodebox",
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
|
25
nodes.lua
25
nodes.lua
@ -642,28 +642,13 @@ for _, row in ipairs(nodetypes) do
|
||||
node_def.palette = "unifieddyes_palette_extended.png"
|
||||
node_def.groups.ud_param2_colorable = 1
|
||||
node_def.airbrush_replacement_node = "scifi_nodes:"..name.."_colored"
|
||||
-- NOTE: about the "Node scifi_nodes:xxx has a palette, but not a suitable paramtype2" warning:
|
||||
-- inserting "color" here (which would be the proper type) results in wrong
|
||||
-- colored original nodes due to existing param2type = "facedir"
|
||||
-- a migration lbm for those might be the proper solution but has to be thoroughly tested first
|
||||
node_def.paramtype2 = nil
|
||||
end
|
||||
|
||||
-- register node
|
||||
minetest.register_node("scifi_nodes:"..name, node_def)
|
||||
|
||||
if is_colorable and has_unifieddyes_mod then
|
||||
-- register colored node
|
||||
minetest.register_node("scifi_nodes:"..name.."_colored", {
|
||||
description = desc,
|
||||
tiles = {"scifi_nodes_"..name..".png"},
|
||||
groups = {
|
||||
cracky = 1,
|
||||
ud_param2_colorable = 1,
|
||||
not_in_creative_inventory = 1
|
||||
},
|
||||
palette = "unifieddyes_palette_extended.png",
|
||||
paramtype = "light",
|
||||
paramtype2 = "color",
|
||||
light_source = light,
|
||||
sounds = scifi_nodes.node_sound_glass_defaults(),
|
||||
on_construct = unifieddyes.on_construct,
|
||||
on_dig = unifieddyes.on_dig
|
||||
})
|
||||
end
|
||||
end
|
||||
|
68
nodes_colored.lua
Normal file
68
nodes_colored.lua
Normal file
@ -0,0 +1,68 @@
|
||||
|
||||
minetest.register_node("scifi_nodes:whiteoct_colored", {
|
||||
description = "white octagon",
|
||||
tiles = {"scifi_nodes_super_white.png"},
|
||||
overlay_tiles = {{ name = "scifi_nodes_whiteoct_overlay.png", color = "white" }},
|
||||
groups = {
|
||||
cracky = 1,
|
||||
ud_param2_colorable = 1,
|
||||
not_in_creative_inventory = 1
|
||||
},
|
||||
palette = "unifieddyes_palette_extended.png",
|
||||
paramtype = "light",
|
||||
paramtype2 = "color",
|
||||
sounds = scifi_nodes.node_sound_glass_defaults(),
|
||||
on_construct = unifieddyes.on_construct,
|
||||
on_dig = unifieddyes.on_dig
|
||||
})
|
||||
|
||||
minetest.register_node("scifi_nodes:whitetile_colored", {
|
||||
description = "white tile2",
|
||||
tiles = {"scifi_nodes_whitetile.png"},
|
||||
overlay_tiles = {{ name = "scifi_nodes_whitetile_overlay.png", color = "white" }},
|
||||
groups = {
|
||||
cracky = 1,
|
||||
ud_param2_colorable = 1,
|
||||
not_in_creative_inventory = 1
|
||||
},
|
||||
palette = "unifieddyes_palette_extended.png",
|
||||
paramtype = "light",
|
||||
paramtype2 = "color",
|
||||
sounds = scifi_nodes.node_sound_glass_defaults(),
|
||||
on_construct = unifieddyes.on_construct,
|
||||
on_dig = unifieddyes.on_dig
|
||||
})
|
||||
|
||||
minetest.register_node("scifi_nodes:white_colored", {
|
||||
description = "plastic wall",
|
||||
tiles = {"scifi_nodes_white.png"},
|
||||
-- NOTE: colorless overlay not enabled for the plastic wall node, doesn't look that natural
|
||||
-- overlay_tiles = {{ name = "scifi_nodes_white_overlay.png", color = "white" }},
|
||||
groups = {
|
||||
cracky = 1,
|
||||
ud_param2_colorable = 1,
|
||||
not_in_creative_inventory = 1
|
||||
},
|
||||
palette = "unifieddyes_palette_extended.png",
|
||||
paramtype = "light",
|
||||
paramtype2 = "color",
|
||||
sounds = scifi_nodes.node_sound_glass_defaults(),
|
||||
on_construct = unifieddyes.on_construct,
|
||||
on_dig = unifieddyes.on_dig
|
||||
})
|
||||
|
||||
minetest.register_node("scifi_nodes:white2_colored", {
|
||||
description = "plastic",
|
||||
tiles = {"scifi_nodes_white2.png"},
|
||||
groups = {
|
||||
cracky = 1,
|
||||
ud_param2_colorable = 1,
|
||||
not_in_creative_inventory = 1
|
||||
},
|
||||
palette = "unifieddyes_palette_extended.png",
|
||||
paramtype = "light",
|
||||
paramtype2 = "color",
|
||||
sounds = scifi_nodes.node_sound_glass_defaults(),
|
||||
on_construct = unifieddyes.on_construct,
|
||||
on_dig = unifieddyes.on_dig
|
||||
})
|
Binary file not shown.
Before Width: | Height: | Size: 566 B After Width: | Height: | Size: 545 B |
BIN
textures/scifi_nodes_white_overlay.png
Normal file
BIN
textures/scifi_nodes_white_overlay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 204 B |
BIN
textures/scifi_nodes_whiteoct_overlay.png
Normal file
BIN
textures/scifi_nodes_whiteoct_overlay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 125 B |
BIN
textures/scifi_nodes_whitetile_overlay.png
Normal file
BIN
textures/scifi_nodes_whitetile_overlay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 271 B |
Reference in New Issue
Block a user