Trapdoor sides

This commit is contained in:
paulevsGitch 2020-10-01 16:57:29 +03:00
parent 670a855abf
commit b383c9f92e
2 changed files with 21 additions and 2 deletions

View file

@ -1,6 +1,7 @@
{ {
"parent": "block/template_orientable_trapdoor_bottom", "parent": "betterend:block/sided_trapdoor",
"textures": { "textures": {
"texture": "betterend:block/mossy_glowshroom_trapdoor" "texture": "betterend:block/mossy_glowshroom_trapdoor",
"side": "betterend:block/mossy_glowshroom_door_side"
} }
} }

View file

@ -0,0 +1,18 @@
{ "parent": "block/thin_block",
"textures": {
"particle": "#texture"
},
"elements": [
{ "from": [ 0, 0, 0 ],
"to": [ 16, 3, 16 ],
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
"north": { "uv": [ 16, 0, 13, 16 ], "texture": "#side", "cullface": "north", "rotation": 90 },
"south": { "uv": [ 16, 0, 13, 16 ], "texture": "#side", "cullface": "south", "rotation": 90 },
"west": { "uv": [ 16, 0, 13, 16 ], "texture": "#side", "cullface": "west", "rotation": 90 },
"east": { "uv": [ 16, 0, 13, 16 ], "texture": "#side", "cullface": "east", "rotation": 90 }
}
}
]
}