3 Commits

Author SHA1 Message Date
BuckarooBanzay
5afb76aac2 added dark glass pane 2020-07-12 19:43:04 +02:00
BuckarooBanzay
745bb6d21f fix some indent issues 2020-07-12 17:12:35 +02:00
BuckarooBanzay
3465a8ac9d add pane variants of the octagon glass nodes (single, double and offset) 2020-07-12 17:05:03 +02:00
2 changed files with 3 additions and 5 deletions

View File

@@ -22,5 +22,3 @@ dofile(MP.."/digicode.lua")
dofile(MP.."/models.lua")
dofile(MP.."/crafts.lua")
dofile(MP.."/octagon_panes.lua")
minetest.log("action", "[scifi_nodes] loaded.")

View File

@@ -19,7 +19,7 @@ local function register(basename, description, texture)
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {{-0.5, -0.5, -0.03125, 0.5, 0.5, 0.03125}},
fixed = {{-0.5, -0.5, 0, 0.5, 0.5, 0}},
},
selection_box = {
type = "fixed",
@@ -44,7 +44,7 @@ local function register(basename, description, texture)
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {{-0.5, -0.5, -0.03125, 0.5, 1.5, 0.03125}},
fixed = {{-0.5, -0.5, 0, 0.5, 1.5, 0}},
},
selection_box = {
type = "fixed",
@@ -69,7 +69,7 @@ local function register(basename, description, texture)
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {{-0.5, -0.5, 0.96875, 0.5, 0.5, 1.03125}},
fixed = {{-0.5, -0.5, 1, 0.5, 0.5, 1}},
},
selection_box = {
type = "fixed",