finish nodebox (hopefully) and add some textures

This commit is contained in:
webdesigner97 2014-04-23 22:52:32 +02:00
parent c0dd1951f3
commit eee27ca381
8 changed files with 9 additions and 8 deletions

View File

@ -8,10 +8,10 @@ NODEBOX nodebox1 -0.1875 -0.5 0.5 0.1875 0.5 0.75
NODEBOX nodebox2 -0.0625 0.375 0.3125 0.0625 0.4375 0.5
NODEBOX nodebox3 -0.0625 0.0625 0.3125 0.0625 0.125 0.5
NODEBOX nodebox4 -0.0625 -0.25 0.3125 0.0625 -0.1875 0.5
NODEBOX nodebox5 0.03125 0.3125 0.3125 0.09375 0.38 0.5
NODEBOX nodebox6 -0.09375 0.3125 0.3125 -0.03125 0.375 0.5
NODEBOX nodebox7 0.03125 0 0.3125 0.09375 0.0625 0.5
NODEBOX nodebox8 -0.09375 0 0.3125 -0.03125 0.0625 0.5
NODEBOX nodebox9 0.03125 -0.3125 0.3125 0.09375 -0.25 0.5
NODEBOX nodebox10 -0.09375 -0.3125 0.3125 -0.03125 -0.25 0.5
NODEBOX nodebox5 0.0625 0.3125 0.3125 0.125 0.38 0.5
NODEBOX nodebox6 -0.125 0.3125 0.3125 -0.0625 0.375 0.5
NODEBOX nodebox7 0.0625 0 0.3125 0.125 0.0625 0.5
NODEBOX nodebox8 -0.125 0 0.3125 -0.0625 0.0625 0.5
NODEBOX nodebox9 0.0625 -0.3125 0.3125 0.125 -0.25 0.5
NODEBOX nodebox10 -0.125 -0.3125 0.3125 -0.0625 -0.25 0.5
END NODE

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 954 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 312 B

After

Width:  |  Height:  |  Size: 884 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 942 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 312 B

After

Width:  |  Height:  |  Size: 320 B

View File

@ -8,6 +8,7 @@ minetest.register_node(":streets:trafficlight_top_off",{
paramtype2 = "facedir",
groups = {cracky = 1, level = 2},
inventory_image = "streets_trafficlight_inv.png",
light_source = 11,
node_box = {
type = "fixed",
fixed = {
@ -16,7 +17,7 @@ minetest.register_node(":streets:trafficlight_top_off",{
{-0.0625,0.375,0.3125,0.0625,0.4375,0.5}, --nodebox2
{-0.0625,0.0625,0.3125,0.0625,0.125,0.5}, --nodebox3
{-0.0625,-0.25,0.3125,0.0625,-0.1875,0.5}, --nodebox4
{0.0625,0.3125,0.3125,0.125,0.375,0.5}, --nodebox5
{0.0625,0.3125,0.3125,0.125,0.38,0.5}, --nodebox5
{-0.125,0.3125,0.3125,-0.0625,0.375,0.5}, --nodebox6
{0.0625,0,0.3125,0.125,0.0625,0.5}, --nodebox7
{-0.125,0,0.3125,-0.0625,0.0625,0.5}, --nodebox8
@ -24,7 +25,7 @@ minetest.register_node(":streets:trafficlight_top_off",{
{-0.125,-0.3125,0.3125,-0.0625,-0.25,0.5}, --nodebox10
}
},
tiles = {"streets_tl_bg.png","streets_tl_bg.png","streets_tl_bg.png","streets_tl_bg.png","streets_tl_bg.png","streets_trafficlight_template.png"},
tiles = {"streets_tl_bg.png","streets_tl_bg.png","streets_tl_bg.png","streets_tl_bg.png","streets_tl_bg.png","streets_tl_green.png"},
})
minetest.register_node(":streets:trafficlight_top_red",{