1
0
mirror of https://github.com/D00Med/scifi_nodes.git synced 2025-07-17 07:20:20 +02:00

6 Commits

Author SHA1 Message Date
749d59a530 Merge remote-tracking branch 'upstream/master' 2020-09-13 12:28:42 +02:00
b54333d56b fix nodeboxes of double- and offset pane 2020-09-11 21:19:50 +02:00
bd58dbc48b Merge remote-tracking branch 'upstream/master' 2020-07-23 11:42:19 +02:00
6492d311c8 fix "walk-through" glass panes (wrong nodebox) 2020-07-22 20:23:54 +02:00
4eaba4f6e1 Adds loading message in the Action Log 2020-07-21 11:52:47 +02:00
03d097abf8 add pane variants of the octagon glass nodes (single, double and offset) (#41)
* add pane variants of the octagon glass nodes (single, double and offset)
* fix some indent issues
* added dark glass pane

Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
2020-07-14 07:37:51 +02:00
2 changed files with 5 additions and 3 deletions

View File

@ -22,3 +22,5 @@ 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, 0.5, 0.5, 0}},
fixed = {{-0.5, -0.5, -0.03125, 0.5, 0.5, 0.03125}},
},
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, 0.5, 1.5, 0}},
fixed = {{-0.5, -0.5, -0.03125, 0.5, 1.5, 0.03125}},
},
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, 1, 0.5, 0.5, 1}},
fixed = {{-0.5, -0.5, 0.96875, 0.5, 0.5, 1.03125}},
},
selection_box = {
type = "fixed",