
it should look like this:

It happens only on blocks placed on clear sunlight on steel (as far as i can tell). Oh and the "missing" side is walk-through (not desired btw).
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
minetest.register_node("hakon:test", {
description = 'Servisni lavka',
drawtype = "nodebox",
light_propagates = true,
sunlight_propagates = true,
tiles = {"kostka.png"},
paramtype = 'light',
paramtype2 = 'facedir',
node_box = {
type = "fixed",
fixed = {
{-0.50, -0.50, -0.50, -0.44, 0.50, 0.50},
{-0.50, 0.44, -0.50, 0.50, 0.50, 0.50},
{ 0.50, -0.50, 0.50, 0.44, 0.50, -0.50},
},
},
selection_box = {
type = "fixed",
fixed = {
{-0.50, -0.50, -0.50, -0.44, 0.50, 0.50},
{-0.50, 0.44, -0.50, 0.50, 0.50, 0.50},
{ 0.50, -0.50, 0.50, 0.44, 0.50, -0.50},
},
},
walkable = true,
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
})
What i did wrong?
OT: one day...


