Improve mapgen, add grass, and include the fill tool.

This commit is contained in:
Signal 2026-01-15 18:54:28 -05:00
parent 1e897665bb
commit 4659a008ac
86 changed files with 1098 additions and 293 deletions

View file

@ -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