diff options
| author | VanessaE <vanessaezekowitz@gmail.com> | 2012-08-28 11:19:19 -0700 | 
|---|---|---|
| committer | VanessaE <vanessaezekowitz@gmail.com> | 2012-08-28 11:19:19 -0700 | 
| commit | bcd6634811d311b2e64307ccd866f20c0b60e23f (patch) | |
| tree | b17aa0bee9cf340e2292d9e70b2b87867c0bebb3 /mesecons_receiver | |
| parent | decdfdb3626c4ee23c4e2c1b40f7783358df1c43 (diff) | |
| parent | 8206ac70f1453f8851df48f57d9470714775382c (diff) | |
Merge pull request #38 from VanessaE/master
gave receiver objects their own textures.
Diffstat (limited to 'mesecons_receiver')
| -rw-r--r-- | mesecons_receiver/init.lua | 28 | 
1 files changed, 14 insertions, 14 deletions
diff --git a/mesecons_receiver/init.lua b/mesecons_receiver/init.lua index b5119ec..aa91bd6 100644 --- a/mesecons_receiver/init.lua +++ b/mesecons_receiver/init.lua @@ -8,18 +8,18 @@ rcvboxes = {  minetest.register_node("mesecons_receiver:receiver_on", {  	drawtype = "nodebox",  	tiles = { -		"wires_on.png", -		"wires_on.png", -		"wires_vertical_on.png", -		"wires_vertical_on.png", -		"wires_bump_on.png", -		"wires_bump_on.png", +		"receiver_tb_on.png", +		"receiver_tb_on.png", +		"receiver_lr_on.png", +		"receiver_lr_on.png", +		"receiver_fb_on.png", +		"receiver_fb_on.png",  	},  	paramtype = "light",  	paramtype2 = "facedir",  	selection_box = {               	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 = {  		type = "fixed", @@ -34,18 +34,18 @@ minetest.register_node("mesecons_receiver:receiver_off", {  	drawtype = "nodebox",  	description = "You hacker you",  	tiles = { -		"wires_off.png", -		"wires_off.png", -		"wires_vertical_off.png", -		"wires_vertical_off.png", -		"wires_bump_off.png", -		"wires_bump_off.png", +		"receiver_tb_off.png", +		"receiver_tb_off.png", +		"receiver_lr_off.png", +		"receiver_lr_off.png", +		"receiver_fb_off.png", +		"receiver_fb_off.png",  	},  	paramtype = "light",  	paramtype2 = "facedir",  	selection_box = {               	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 = {  		type = "fixed",  | 
