2016-03-12 15:59:15 -08:00
|
|
|
mymillwork
|
2015-03-14 21:39:43 -07:00
|
|
|
========
|
|
|
|
|
2016-03-12 15:58:58 -08:00
|
|
|
Crown Mold, Baseboards, Columns and more To minetest
|
2015-03-15 06:28:26 -07:00
|
|
|
|
2016-09-30 20:07:45 -06:00
|
|
|
Licence - DWYWPL
|
2015-03-15 06:28:26 -07:00
|
|
|
|
2019-05-16 15:14:32 +02:00
|
|
|
If you want to add or remove a texture simply edit the materials.lua file.
|
2015-03-16 11:13:47 -07:00
|
|
|
|
2019-05-16 15:14:32 +02:00
|
|
|
Each texture has 24 nodes so careful that you don't add too many textures.
|
2015-03-16 11:13:47 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-05-16 15:14:32 +02:00
|
|
|
API example:
|
2016-09-30 20:07:45 -06:00
|
|
|
|
|
|
|
```lua
|
2019-05-16 15:14:32 +02:00
|
|
|
mymillwork.register("default:stone",
|
|
|
|
"default_stone",
|
|
|
|
"Stone",
|
|
|
|
"default_stone.png",
|
|
|
|
{cracky=3, stone=1, not_in_creative_inventory=1},
|
2016-09-30 20:07:45 -06:00
|
|
|
)
|
|
|
|
```
|