Improve mapgen, add grass, and include the fill tool.
This commit is contained in:
parent
1e897665bb
commit
4659a008ac
86 changed files with 1098 additions and 293 deletions
|
|
@ -11,7 +11,8 @@ function ns.register_slab(def)
|
|||
fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5}
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir"
|
||||
paramtype2 = "facedir",
|
||||
_variant = "slab"
|
||||
}))
|
||||
end
|
||||
|
||||
|
|
@ -61,7 +62,8 @@ function ns.register_stair(def)
|
|||
fixed = {{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, {-0.5, -0.5, 0, 0.5, 0.5, 0.5}}
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir"
|
||||
paramtype2 = "facedir",
|
||||
_variant = "stair",
|
||||
}))
|
||||
|
||||
rgt.register_node(def._name.."_stair_inner", extend(table.copy(def), {
|
||||
|
|
@ -71,7 +73,8 @@ function ns.register_stair(def)
|
|||
fixed = {{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, {-0.5, -0.5, 0, 0.5, 0.5, 0.5}, {-0.5, -0.5, -0.5, 0, 0.5, 0.5}}
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir"
|
||||
paramtype2 = "facedir",
|
||||
_variant = "stair_inner",
|
||||
}))
|
||||
|
||||
rgt.register_node(def._name.."_stair_outer", extend(def, {
|
||||
|
|
@ -81,7 +84,8 @@ function ns.register_stair(def)
|
|||
fixed = {{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, {-0.5, -0.5, 0.5, 0, 0.5, 0}}
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir"
|
||||
paramtype2 = "facedir",
|
||||
_variant = "stair_outer",
|
||||
}))
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue