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

@ -0,0 +1,22 @@
local ns = rgt_machines
ns.components = {}
--[[
{
name = "...", -- The component's name.
attach_points
}
--]]
function ns.register_component(def)
ns.components[def.name] = def
end
function ns.register_plate(name, def)
rgt.register_item(name, def)
end
rgt.register_node("hand_crank", {
mesh = "rgt_hand_crank.gltf"
})

View file

@ -0,0 +1,2 @@
name = rgt_machines_mechanical
depends = rgt_machines