Get rid of second and third shades of 3dforniture-related textures.

Minetest has per-face shading of nodes now so these textures are redundant.
This commit is contained in:
Vanessa Ezekowitz 2014-06-18 06:53:07 -04:00
parent 501b942542
commit 41b1730ff2
13 changed files with 14 additions and 70 deletions

View File

@ -3,14 +3,7 @@ local S = homedecor.gettext
-- Test
minetest.register_node("homedecor:table", {
description = S("Table"),
tiles = {
"forniture_wood.png",
"forniture_wood.png",
"forniture_wood_s1.png",
"forniture_wood_s1.png",
"forniture_wood_s2.png",
"forniture_wood_s2.png",
},
tiles = { "forniture_wood.png" },
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
@ -33,14 +26,7 @@ minetest.register_node("homedecor:table", {
minetest.register_node("homedecor:chair", {
description = S("Chair"),
tiles = {
"forniture_wood.png",
"forniture_wood.png",
"forniture_wood_s1.png",
"forniture_wood_s1.png",
"forniture_wood_s2.png",
"forniture_wood_s2.png",
},
tiles = { "forniture_wood.png" },
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",

View File

@ -2,11 +2,7 @@ local S = homedecor.gettext
minetest.register_node("homedecor:toilet", {
description = S("Toilet"),
tiles = {
"forniture_marble.png", "forniture_marble.png",
"forniture_marble_s1.png", "forniture_marble_s1.png",
"forniture_marble_s2.png", "forniture_marble_s2.png",
},
tiles = { "forniture_marble.png" },
drawtype = "nodebox",
sunlight_propagates = false,
paramtype = "light",
@ -33,9 +29,8 @@ minetest.register_node("homedecor:toilet", {
minetest.register_node("homedecor:toilet_open", {
tiles = {
"forniture_marble_top_toilet.png", "forniture_marble.png",
"forniture_marble_sb1.png", "forniture_marble_sb1.png",
"forniture_marble_sb2.png", "forniture_marble_sb2.png",
"forniture_marble_top_toilet.png",
"forniture_marble.png"
},
drawtype = "nodebox",
paramtype = "light",
@ -76,9 +71,8 @@ minetest.register_node("homedecor:toilet_open", {
minetest.register_node("homedecor:sink", {
description = S("Sink"),
tiles = {
"forniture_marble_top_sink.png", "forniture_marble.png",
"forniture_marble_sb1.png", "forniture_marble_sb1.png",
"forniture_marble_sb2.png", "forniture_marble_sb2.png",
"forniture_marble_top_sink.png",
"forniture_marble.png"
},
inventory_image="3dforniture_inv_sink.png",
drawtype = "nodebox",
@ -109,11 +103,7 @@ minetest.register_node("homedecor:sink", {
--Taps
minetest.register_node("homedecor:taps", {
description = S("Taps"),
tiles = {
"forniture_metal.png", "forniture_metal.png",
"forniture_metal_s1.png", "forniture_metal_s1.png",
"forniture_metal_s2.png", "forniture_metal_s2.png",
},
tiles = { "forniture_metal.png" },
inventory_image="3dforniture_inv_taps.png",
drawtype = "nodebox",
sunlight_propagates = true,
@ -145,12 +135,8 @@ minetest.register_node("homedecor:taps", {
minetest.register_node("homedecor:shower_tray", {
description = S("Shower Tray"),
tiles = {
"forniture_marble_base_ducha_top.png",
"forniture_marble_base_ducha_top.png",
"forniture_marble_sb1.png",
"forniture_marble_sb1.png",
"forniture_marble_sb2.png",
"forniture_marble_sb2.png",
"forniture_marble_base_ducha_top.png",
"forniture_marble.png"
},
drawtype = "nodebox",
sunlight_propagates = true,
@ -178,14 +164,7 @@ minetest.register_node("homedecor:shower_tray", {
--Shower Head
minetest.register_node("homedecor:shower_head", {
description = S("Shower Head"),
tiles = {
"forniture_metal.png",
"forniture_metal.png",
"forniture_metal_s1.png",
"forniture_metal_s1.png",
"forniture_metal_s2.png",
"forniture_metal_s2.png",
},
tiles = { "forniture_metal.png" },
inventory_image="3dforniture_inv_shower_head.png",
drawtype = "nodebox",
sunlight_propagates = true,

View File

@ -3,14 +3,7 @@ local S = homedecor.gettext
minetest.register_node("homedecor:bars", {
description = S("Bars"),
tiles = {
"forniture_black_metal.png",
"forniture_black_metal.png",
"forniture_black_metal_s1.png",
"forniture_black_metal_s1.png",
"forniture_black_metal_s2.png",
"forniture_black_metal_s2.png",
},
tiles = { "forniture_black_metal.png" },
drawtype = "nodebox",
sunlight_propagates = true,
paramtype = "light",
@ -35,14 +28,7 @@ minetest.register_node("homedecor:bars", {
--L Binding Bars
minetest.register_node("homedecor:L_binding_bars", {
description = S("Binding Bars"),
tiles = {
"forniture_black_metal.png",
"forniture_black_metal.png",
"forniture_black_metal_s1.png",
"forniture_black_metal_s1.png",
"forniture_black_metal_s2.png",
"forniture_black_metal_s2.png",
},
tiles = { "forniture_black_metal.png" },
drawtype = "nodebox",
sunlight_propagates = true,
paramtype = "light",
@ -64,14 +50,7 @@ minetest.register_node("homedecor:L_binding_bars", {
minetest.register_node("homedecor:chains", {
description = S("Chains"),
tiles = {
"forniture_black_metal.png",
"forniture_black_metal.png",
"forniture_black_metal_s1.png",
"forniture_black_metal_s1.png",
"forniture_black_metal_s2.png",
"forniture_black_metal_s2.png",
},
tiles = { "forniture_black_metal.png" },
inventory_image="3dforniture_inv_chains.png",
drawtype = "nodebox",
sunlight_propagates = true,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 437 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 814 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 788 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 939 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 505 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 444 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB