26 lines
512 B
Lua
26 lines
512 B
Lua
-- GENERATED CODE
|
|
-- Node Box Editor, version 0.9.0
|
|
-- Namespace: test
|
|
|
|
minetest.register_node("test:node_1", {
|
|
tiles = {
|
|
"default_wood.png",
|
|
"default_wood.png",
|
|
"default_wood.png",
|
|
"default_wood.png",
|
|
"default_wood.png",
|
|
"default_wood.png"
|
|
},
|
|
drawtype = "nodebox",
|
|
paramtype = "light",
|
|
node_box = {
|
|
type = "fixed",
|
|
fixed = {
|
|
{-0.5625, -0.5, 0.4375, -0.5, 0, 1},
|
|
{-0.5, -0.5, 0.4375, 0, 0, 0.5},
|
|
{-0.5625, 0, 0.5, -0.5, 0.5, 1.5},
|
|
{-0.5625, 0, 0.4375, 0.5, 0.5, 0.5},
|
|
}
|
|
}
|
|
})
|
|
|