Merge pull request #38 from VanessaE/master

gave receiver objects their own textures.
This commit is contained in:
VanessaE 2012-08-28 11:19:19 -07:00
commit bcd6634811
7 changed files with 14 additions and 14 deletions

View File

@ -8,18 +8,18 @@ rcvboxes = {
minetest.register_node("mesecons_receiver:receiver_on", { minetest.register_node("mesecons_receiver:receiver_on", {
drawtype = "nodebox", drawtype = "nodebox",
tiles = { tiles = {
"wires_on.png", "receiver_tb_on.png",
"wires_on.png", "receiver_tb_on.png",
"wires_vertical_on.png", "receiver_lr_on.png",
"wires_vertical_on.png", "receiver_lr_on.png",
"wires_bump_on.png", "receiver_fb_on.png",
"wires_bump_on.png", "receiver_fb_on.png",
}, },
paramtype = "light", paramtype = "light",
paramtype2 = "facedir", paramtype2 = "facedir",
selection_box = { selection_box = {
type = "fixed", type = "fixed",
fixed = { -3/16, -8/16, -8/16, 3/16, 2/16, 8/16 } fixed = { -3/16, -8/16, -8/16, 3/16, 3/16, 8/16 }
}, },
node_box = { node_box = {
type = "fixed", type = "fixed",
@ -34,18 +34,18 @@ minetest.register_node("mesecons_receiver:receiver_off", {
drawtype = "nodebox", drawtype = "nodebox",
description = "You hacker you", description = "You hacker you",
tiles = { tiles = {
"wires_off.png", "receiver_tb_off.png",
"wires_off.png", "receiver_tb_off.png",
"wires_vertical_off.png", "receiver_lr_off.png",
"wires_vertical_off.png", "receiver_lr_off.png",
"wires_bump_off.png", "receiver_fb_off.png",
"wires_bump_off.png", "receiver_fb_off.png",
}, },
paramtype = "light", paramtype = "light",
paramtype2 = "facedir", paramtype2 = "facedir",
selection_box = { selection_box = {
type = "fixed", type = "fixed",
fixed = { -3/16, -8/16, -8/16, 3/16, 2/16, 8/16 } fixed = { -3/16, -8/16, -8/16, 3/16, 3/16, 8/16 }
}, },
node_box = { node_box = {
type = "fixed", type = "fixed",

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 491 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 457 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 481 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 B