25 lines
486 B
Lua
25 lines
486 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.5, -0.5, 0.375, 0.5, -0.3125, 0.5},
|
|
{-0.5, -0.3125, 0.25, 0.5, -0.125, 0.5},
|
|
{-0.5, -0.125, 0.125, 0.5, 0.5, 0.5},
|
|
}
|
|
}
|
|
})
|
|
|