Rotate dual delayer, signal changer and conductor signal changer

This commit is contained in:
upsilon 2017-04-19 20:53:18 +02:00
parent a68e7cb45b
commit c79bc86666
No known key found for this signature in database
GPG Key ID: A80DAE1F266E1C3C
9 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@ local nodebox = {
}
local function signalchanger_get_output_rules(node)
local rules = {{x=1, y=0, z=0}}
local rules = {{x=-1, y=0, z=0}}
for i = 0, node.param2 do
rules = mesecon.rotate_rules_left(rules)
end
@ -12,7 +12,7 @@ local function signalchanger_get_output_rules(node)
end
local function signalchanger_get_input_rules(node)
local rules = {{x=0, y=0, z=1, name="input_on"}, {x=0, y=0, z=-1, name="input_off"}, {x=-1, y=0, z=0, name="input_signal"}}
local rules = {{x=0, y=0, z=-1, name="input_on"}, {x=0, y=0, z=1, name="input_off"}, {x=1, y=0, z=0, name="input_signal"}}
for i = 0, node.param2 do
rules = mesecon.rotate_rules_left(rules)
end

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 B

After

Width:  |  Height:  |  Size: 161 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 B

After

Width:  |  Height:  |  Size: 158 B

View File

@ -1,5 +1,5 @@
local function dual_delayer_get_input_rules(node)
local rules = {{x=-1, y=0, z=0}}
local rules = {{x=1, y=0, z=0}}
for i = 0, node.param2 do
rules = mesecon.rotate_rules_left(rules)
end
@ -7,7 +7,7 @@ local function dual_delayer_get_input_rules(node)
end
local function dual_delayer_get_output_rules(node)
local rules = {{x=0, y=0, z=-1}, {x=0, y=0, z=1}}
local rules = {{x=0, y=0, z=1}, {x=0, y=0, z=-1}}
for i = 0, node.param2 do
rules = mesecon.rotate_rules_left(rules)
end
@ -68,7 +68,7 @@ for n,i in pairs({{0,0},{1,0},{1,1}}) do
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {{-6/16, -8/16, -1/16, 6/16, -7/16, 8/16 },
fixed = {{-6/16, -8/16, -8/16, 6/16, -7/16, 1/16 },
{-8/16, -8/16, 1/16, -6/16, -7/16, -1/16},
{8/16, -8/16, -1/16, 6/16, -7/16, 1/16}}
},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 99 B

After

Width:  |  Height:  |  Size: 129 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 B

After

Width:  |  Height:  |  Size: 189 B

View File

@ -4,8 +4,8 @@ local nodebox = {
}
local function signalchanger_get_output_rules(node)
local rules = {{x=1, y=0, z=0},
{x=-1, y=0, z=0}}
local rules = {{x=-1, y=0, z=0},
{x=1, y=0, z=0}}
for i = 0, node.param2 do
rules = mesecon.rotate_rules_left(rules)
end
@ -13,7 +13,7 @@ local function signalchanger_get_output_rules(node)
end
local function signalchanger_get_input_rules(node)
local rules = {{x=0, y=0, z=1, name="input_on"}, {x=0, y=0, z=-1, name="input_off"}}
local rules = {{x=0, y=0, z=-1, name="input_on"}, {x=0, y=0, z=1, name="input_off"}}
for i = 0, node.param2 do
rules = mesecon.rotate_rules_left(rules)
end

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 B

After

Width:  |  Height:  |  Size: 158 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 B

After

Width:  |  Height:  |  Size: 159 B