forked from mad-star-studio/Voxelis
21 lines
493 B
Lua
21 lines
493 B
Lua
|
-- ---------------------------- Dyeable Nodes -------------------------- --
|
||
|
-- List of dyeable things
|
||
|
local dyeable_blocks = {"wool, carpet"}
|
||
|
|
||
|
-- Register base things their dyeable variants
|
||
|
for _, base_block in ipairs(dyeable_blocks) do
|
||
|
vox_coloring.register_dyeable("vox_worldblocks", base_block)
|
||
|
end
|
||
|
|
||
|
-- ---------------------------- Basics -------------------------- --
|
||
|
-- "We've got wool and wool accessories.
|
||
|
|
||
|
-- String
|
||
|
|
||
|
|
||
|
-- Wool
|
||
|
|
||
|
|
||
|
-- Carpet
|
||
|
-- These are made from wool or from fabric
|