mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-11-16 23:30:34 +01:00
Improve receiver nodebox
This commit is contained in:
parent
35b66c3599
commit
73b73dd025
|
@ -6,13 +6,23 @@ local rcvboxes = {
|
||||||
}
|
}
|
||||||
|
|
||||||
local down_rcvboxes = {
|
local down_rcvboxes = {
|
||||||
{-8/16, -8/16, -8/16, 8/16, -7/16, 8/16},
|
{-6/16, -8/16, -6/16, 6/16, -7/16, 6/16}, -- Top plate
|
||||||
{-1/16, -8/16, -1/16, 1/16, -24/16, 1/16},
|
{-2/16, -6/16, -2/16, 2/16, -7/16, 2/16}, -- Bump
|
||||||
|
{-1/16, -8/16, -1/16, 1/16, -24/16, 1/16}, -- Wire through the block
|
||||||
|
{-1/16, -8/16, 6/16, 1/16, -7/16, 8/16}, -- Plate extension (North)
|
||||||
|
{-1/16, -8/16, -6/16, 1/16, -7/16, -8/16}, -- Plate extension (South)
|
||||||
|
{-8/16, -8/16, 1/16, -6/16, -7/16, -1/16}, -- Plate extension (West)
|
||||||
|
{6/16, -8/16, 1/16, 8/16, -7/16, -1/16}, -- Plate extension (East)
|
||||||
}
|
}
|
||||||
|
|
||||||
local up_rcvboxes = {
|
local up_rcvboxes = {
|
||||||
{-8/16, -8/16, -8/16, 8/16, -7/16, 8/16},
|
{-6/16, -8/16, -6/16, 6/16, -7/16, 6/16}, -- Top plate
|
||||||
{-1/16, -7/16, -1/16, 1/16, 24/16, 1/16},
|
{-2/16, -6/16, -2/16, 2/16, -7/16, 2/16}, -- Bump
|
||||||
|
{-1/16, -6/16, -1/16, 1/16, 24/16, 1/16}, -- Wire through the block
|
||||||
|
{-1/16, -8/16, 6/16, 1/16, -7/16, 8/16}, -- Plate extension (North)
|
||||||
|
{-1/16, -8/16, -6/16, 1/16, -7/16, -8/16}, -- Plate extension (South)
|
||||||
|
{-8/16, -8/16, 1/16, -6/16, -7/16, -1/16}, -- Plate extension (West)
|
||||||
|
{6/16, -8/16, 1/16, 8/16, -7/16, -1/16}, -- Plate extension (East)
|
||||||
}
|
}
|
||||||
|
|
||||||
local receiver_get_rules = function (node)
|
local receiver_get_rules = function (node)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user