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
0
mods/rgt_machines/rgt_machines_mechanical/modpack.conf
Normal file
0
mods/rgt_machines/rgt_machines_mechanical/modpack.conf
Normal 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"
|
||||
})
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
name = rgt_machines_mechanical
|
||||
depends = rgt_machines
|
||||
Loading…
Add table
Add a link
Reference in a new issue