mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2025-07-25 03:00:28 +02:00
Compare commits
1 Commits
letters-co
...
pipes-ligh
Author | SHA1 | Date | |
---|---|---|---|
0a625939d9 |
@ -21,6 +21,6 @@ read_globals = {
|
|||||||
"screwdriver",
|
"screwdriver",
|
||||||
"minetest",
|
"minetest",
|
||||||
"mesecon",
|
"mesecon",
|
||||||
"unifieddyes",
|
"unifieddyes"
|
||||||
"letters"
|
|
||||||
}
|
}
|
||||||
|
5
init.lua
5
init.lua
@ -32,8 +32,3 @@ dofile(MP.."/models.lua")
|
|||||||
dofile(MP.."/octagon_panes.lua")
|
dofile(MP.."/octagon_panes.lua")
|
||||||
dofile(MP.."/forcefield.lua")
|
dofile(MP.."/forcefield.lua")
|
||||||
dofile(MP.."/crafts.lua")
|
dofile(MP.."/crafts.lua")
|
||||||
|
|
||||||
if minetest.get_modpath("letters") then
|
|
||||||
-- register letter nodes
|
|
||||||
dofile(MP.."/letters.lua")
|
|
||||||
end
|
|
@ -1,5 +0,0 @@
|
|||||||
letters.register_letters("scifi_nodes", "black", "scifi_nodes:black", "Black wall", "scifi_nodes_black.png")
|
|
||||||
letters.register_letters("scifi_nodes", "white2", "scifi_nodes:white2", "Plastic", "scifi_nodes_white2.png")
|
|
||||||
letters.register_letters("scifi_nodes", "purple", "scifi_nodes:purple", "Purple node", "scifi_nodes_purple.png")
|
|
||||||
letters.register_letters("scifi_nodes", "bluemetal", "scifi_nodes:bluemetal", "Blue metal", "scifi_nodes_bluemetal.png")
|
|
||||||
letters.register_letters("scifi_nodes", "greenmetal", "scifi_nodes:greenmetal", "Green metal", "scifi_nodes_greenmetal.png")
|
|
3
mod.conf
3
mod.conf
@ -11,6 +11,5 @@ mesecons_torch,
|
|||||||
mesecons_receiver,
|
mesecons_receiver,
|
||||||
basic_materials,
|
basic_materials,
|
||||||
dye,
|
dye,
|
||||||
unifieddyes,
|
unifieddyes
|
||||||
letters
|
|
||||||
"""
|
"""
|
||||||
|
@ -543,6 +543,7 @@ minetest.register_node("scifi_nodes:lightbars", {
|
|||||||
},
|
},
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
use_texture_alpha = "blend",
|
use_texture_alpha = "blend",
|
||||||
light_source = minetest.LIGHT_MAX,
|
light_source = minetest.LIGHT_MAX,
|
||||||
node_box = {
|
node_box = {
|
||||||
@ -569,6 +570,7 @@ tiles = {{
|
|||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {
|
fixed = {
|
||||||
@ -589,6 +591,7 @@ tiles = {
|
|||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
node_box = {
|
node_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {
|
fixed = {
|
||||||
|
Reference in New Issue
Block a user