1

Bed Texture

TpittGamez 2/20/16 11:18 am
462
2/20/2016 11:26 am
Hello, I was wondering if anyone knew how to change the texture of the bottom of the bed. I cannot find it and am trying to make a texture pack. Where is it in my files?
Posted by
TpittGamez
Level 1 : New Crafter
1

  Have something to say?

JoinSign in

2

TpittGamez
02/20/2016 11:26 am
Level 1 : New Crafter
K. Thx
1
Myyoyo
02/20/2016 11:23 am
Level 67 : High Grandmaster Wolf Whisperer
oak_planks.png

You can edit it's .json if you don't want use planks:
models\block\
bed_foot.json
{
"textures": {
"particle": "blocks/bed_feet_top",
"top": "blocks/bed_feet_top",
"bottom": "blocks/CUSTOMTEXTURE",
"end": "blocks/bed_feet_end",
"side": "blocks/bed_feet_side"
},
"elements": [
{ "from": [ 0, 0, 0 ],
"to": [ 16, 9, 16 ],
"faces": {
"up": { "uv": [ 0, 16, 16, 0 ], "texture": "#top", "rotation": 90 },
"north": { "uv": [ 0, 7, 16, 16 ], "texture": "#end" },
"west": { "uv": [ 0, 7, 16, 16 ], "texture": "#side" },
"east": { "uv": [ 16, 7, 0, 16 ], "texture": "#side" }
}
},
{ "from": [ 0, 3, 0 ],
"to": [ 16, 3, 16 ],
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom" }
}
}
]
}

bed_head.json
{
"textures": {
"particle": "blocks/bed_head_top",
"top": "blocks/bed_head_top",
"bottom": "blocks/planks_oak",
"end": "blocks/bed_head_end",
"side": "blocks/bed_head_side"
},
"elements": [
{ "from": [ 0, 0, 0 ],
"to": [ 16, 9, 16 ],
"faces": {
"up": { "uv": [ 0, 16, 16, 0 ], "texture": "#top", "rotation": 90 },
"south": { "uv": [ 0, 7, 16, 16 ], "texture": "#end" },
"west": { "uv": [ 0, 7, 16, 16 ], "texture": "#side" },
"east": { "uv": [ 16, 7, 0, 16 ], "texture": "#side" }
}
},
{ "from": [ 0, 3, 0 ],
"to": [ 16, 3, 16 ],
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#bottom" }
}
}
]
}
1

Welcome