2018-02-06 22:24:29 +01:00
|
|
|
# Carpets mod for minetest
|
2016-09-04 18:01:19 +02:00
|
|
|
|
2020-03-09 14:22:50 +01:00
|
|
|
This mod adds 15 colorized wool carpets to the minetest.
|
2018-02-06 22:24:29 +01:00
|
|
|
|
|
|
|
![](https://github.com/bell07/minetest-carpets/blob/master/screenshot.png)
|
|
|
|
|
|
|
|
Maintained version, based on https://forum.minetest.net/viewtopic.php?t=15459 and https://forum.minetest.net/viewtopic.php?f=11&t=11637
|
|
|
|
|
2018-02-10 21:25:14 +01:00
|
|
|
License: LGPL-2.1+.
|
2018-02-06 22:24:29 +01:00
|
|
|
|
|
|
|
The mod provides an api to register more carpets using template nodes
|
|
|
|
Example:
|
2020-03-09 14:22:50 +01:00
|
|
|
```lua
|
|
|
|
carpets.register('default:dirt', {description=S('Carpet dirt')}) -- registers carpet looks like dirt
|
2018-02-06 22:24:29 +01:00
|
|
|
```
|