minetest-mods/mymillwork
root 849a565f34 first 2019-12-14 17:47:31 +01:00
..
textures first 2019-12-14 17:47:31 +01:00
README.md first 2019-12-14 17:47:31 +01:00
depends.txt first 2019-12-14 17:47:31 +01:00
description.txt first 2019-12-14 17:47:31 +01:00
init.lua first 2019-12-14 17:47:31 +01:00
licence.txt first 2019-12-14 17:47:31 +01:00
machines.lua first 2019-12-14 17:47:31 +01:00
millwork.lua first 2019-12-14 17:47:31 +01:00
mod.conf first 2019-12-14 17:47:31 +01:00
register.lua first 2019-12-14 17:47:31 +01:00
screenshot.png first 2019-12-14 17:47:31 +01:00

README.md

mymillwork

Crown Mold, Baseboards, Columns and more To minetest

Licence - DWYWPL

If you want to add or remove a texture simply edit the table at the top of millwork.lua file.

Right now I have these textures: White, Sandstone, Desert Sand and Clay. The others are commented out.

Each texture has 28 nodes so careful that you don't add too many textures.

local material = {--{Name for description}, {image without .png}, {item name}, {mod name}

{ "White", "crownmold_white","white","wool"},

-- { "Cobble", "default_cobble","cobble","default"},

{ "Sandstone", "default_sandstone","sandstone","default"},

-- { "Desert Stone", "default_desert_stone","desert_stone","default"},

-- { "Stone", "default_stone","stone","default"},

-- { "Tree", "default_tree","tree","default"},

{ "Desert Sand", "default_desert_sand","desert_sand","default"},

{ "Clay", "default_clay","clay","default"},

-- { "Dirt", "default_dirt","dirt","default"}, }

Newish API example:

mymillwork.register_all(
	"default_stone",
	"Stone",
	"default_stone.png",
	{cracky = 3,not_in_creative_inventory=1},
	"default:stone"
)