1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-30 02:10:20 +02:00

rename most wood, metal, etc textures

to bring them all together into one "category" instead of being scattered across the directory
also combine a couple dupes.
This commit is contained in:
Vanessa Ezekowitz
2015-04-27 23:48:02 -04:00
parent f8fc0bbad6
commit a35b57d713
37 changed files with 78 additions and 76 deletions

View File

@ -48,16 +48,18 @@ local table_colors = { "", "mahogany", "white" }
for _, i in ipairs(table_colors) do
local color = "_"..i
local color2 = "_"..i
local desc = S("Table ("..i..")")
if i == "" then
color = ""
color2 = "_beech"
desc = S("Table")
end
homedecor.register("table"..color, {
description = desc,
tiles = { "forniture_wood"..color..".png" },
tiles = { "homedecor_generic_wood"..color2..".png" },
node_box = {
type = "fixed",
fixed = {
@ -97,15 +99,15 @@ for i in ipairs(chaircolors) do
local color2 = chaircolors[i][1]
local name = S(chaircolors[i][2])
local chairtiles = {
"forniture_wood.png",
"homedecor_generic_wood_beech.png",
"wool"..color..".png",
}
if chaircolors[i][1] == "" then
color = ""
chairtiles = {
"forniture_wood.png",
"forniture_wood.png"
"homedecor_generic_wood_beech.png",
"homedecor_generic_wood_beech.png"
}
end
@ -320,7 +322,7 @@ local wd_cbox = {
homedecor.register("wardrobe_bottom", {
mesh = "homedecor_bedroom_wardrobe.obj",
tiles = {
"forniture_wood.png",
"homedecor_generic_wood_beech.png",
"homedecor_wardrobe_drawers.png",
"homedecor_wardrobe_doors.png"
},