Beds: Use mod textures instead of default_wood.png
No longer use default_wood.png for one side of the bed head and one side of the bed bottom node. Add a new texture for the underside of both beds.
This commit is contained in:
parent
58f6994e08
commit
5ccf965825
|
@ -10,6 +10,10 @@ Various Minetest developers and contributors (MIT)
|
||||||
Authors of media (textures)
|
Authors of media (textures)
|
||||||
---------------------------
|
---------------------------
|
||||||
BlockMen (CC BY-SA 3.0)
|
BlockMen (CC BY-SA 3.0)
|
||||||
|
All textures unless otherwise noted
|
||||||
|
|
||||||
|
TumeniNodes (CC BY-SA 3.0)
|
||||||
|
beds_bed_under.png
|
||||||
|
|
||||||
This mod adds a bed to Minetest which allows to skip the night.
|
This mod adds a bed to Minetest which allows to skip the night.
|
||||||
To sleep, rightclick the bed. If playing in singleplayer mode the night gets skipped
|
To sleep, rightclick the bed. If playing in singleplayer mode the night gets skipped
|
||||||
|
|
|
@ -7,19 +7,19 @@ beds.register_bed("beds:fancy_bed", {
|
||||||
tiles = {
|
tiles = {
|
||||||
bottom = {
|
bottom = {
|
||||||
"beds_bed_top1.png",
|
"beds_bed_top1.png",
|
||||||
"default_wood.png",
|
"beds_bed_under.png",
|
||||||
"beds_bed_side1.png",
|
"beds_bed_side1.png",
|
||||||
"beds_bed_side1.png^[transformFX",
|
"beds_bed_side1.png^[transformFX",
|
||||||
"default_wood.png",
|
"beds_bed_foot.png",
|
||||||
"beds_bed_foot.png",
|
"beds_bed_foot.png",
|
||||||
},
|
},
|
||||||
top = {
|
top = {
|
||||||
"beds_bed_top2.png",
|
"beds_bed_top2.png",
|
||||||
"default_wood.png",
|
"beds_bed_under.png",
|
||||||
"beds_bed_side2.png",
|
"beds_bed_side2.png",
|
||||||
"beds_bed_side2.png^[transformFX",
|
"beds_bed_side2.png^[transformFX",
|
||||||
"beds_bed_head.png",
|
"beds_bed_head.png",
|
||||||
"default_wood.png",
|
"beds_bed_head.png",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
nodebox = {
|
nodebox = {
|
||||||
|
@ -58,7 +58,7 @@ beds.register_bed("beds:bed", {
|
||||||
tiles = {
|
tiles = {
|
||||||
bottom = {
|
bottom = {
|
||||||
"beds_bed_top_bottom.png^[transformR90",
|
"beds_bed_top_bottom.png^[transformR90",
|
||||||
"default_wood.png",
|
"beds_bed_under.png",
|
||||||
"beds_bed_side_bottom_r.png",
|
"beds_bed_side_bottom_r.png",
|
||||||
"beds_bed_side_bottom_r.png^[transformfx",
|
"beds_bed_side_bottom_r.png^[transformfx",
|
||||||
"beds_transparent.png",
|
"beds_transparent.png",
|
||||||
|
@ -66,7 +66,7 @@ beds.register_bed("beds:bed", {
|
||||||
},
|
},
|
||||||
top = {
|
top = {
|
||||||
"beds_bed_top_top.png^[transformR90",
|
"beds_bed_top_top.png^[transformR90",
|
||||||
"default_wood.png",
|
"beds_bed_under.png",
|
||||||
"beds_bed_side_top_r.png",
|
"beds_bed_side_top_r.png",
|
||||||
"beds_bed_side_top_r.png^[transformfx",
|
"beds_bed_side_top_r.png^[transformfx",
|
||||||
"beds_bed_side_top.png",
|
"beds_bed_side_top.png",
|
||||||
|
|
|
@ -30,6 +30,7 @@ Licenses of media (textures)
|
||||||
|
|
||||||
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
|
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
|
||||||
Copyright (C) 2014-2016 BlockMen
|
Copyright (C) 2014-2016 BlockMen
|
||||||
|
Copyright (C) 2018 TumeniNodes
|
||||||
|
|
||||||
You are free to:
|
You are free to:
|
||||||
Share — copy and redistribute the material in any medium or format.
|
Share — copy and redistribute the material in any medium or format.
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 304 B |
Loading…
Reference in New Issue