finish nodebox (hopefully) and add some textures
@ -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
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 954 B |
Before Width: | Height: | Size: 312 B After Width: | Height: | Size: 884 B |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 942 B |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 312 B |
Before Width: | Height: | Size: 312 B After Width: | Height: | Size: 320 B |
@ -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",{
|
||||
|