Trapdoor pattern

This commit is contained in:
Aleksey 2020-10-14 11:48:30 +03:00
parent 7d0363483c
commit 24ec8637e7
4 changed files with 122 additions and 5 deletions

View file

@ -0,0 +1,7 @@
{
"parent": "betterend:block/sided_trapdoor",
"textures": {
"texture": "betterend:block/%block%",
"side": "betterend:block/%texture%"
}
}

View file

@ -0,0 +1,77 @@
{
"variants": {
"facing=east,half=bottom,open=false": {
"model": "betterend:pattern/%block%",
"y": 90
},
"facing=east,half=bottom,open=true": {
"model": "betterend:pattern/%block%",
"x": 90,
"y": 90
},
"facing=east,half=top,open=false": {
"model": "betterend:pattern/%block%",
"x": 180,
"y": 90
},
"facing=east,half=top,open=true": {
"model": "betterend:pattern/%block%",
"x": 270,
"y": 270
},
"facing=north,half=bottom,open=false": {
"model": "betterend:pattern/%block%"
},
"facing=north,half=bottom,open=true": {
"model": "betterend:pattern/%block%",
"x": 90
},
"facing=north,half=top,open=false": {
"model": "betterend:pattern/%block%",
"x": 180
},
"facing=north,half=top,open=true": {
"model": "betterend:pattern/%block%",
"x": 270,
"y": 180
},
"facing=south,half=bottom,open=false": {
"model": "betterend:pattern/%block%",
"y": 180
},
"facing=south,half=bottom,open=true": {
"model": "betterend:pattern/%block%",
"x": 90,
"y": 180
},
"facing=south,half=top,open=false": {
"model": "betterend:pattern/%block%",
"x": 180,
"y": 180
},
"facing=south,half=top,open=true": {
"model": "betterend:pattern/%block%",
"x": 270,
"y": 0
},
"facing=west,half=bottom,open=false": {
"model": "betterend:pattern/%block%",
"y": 270
},
"facing=west,half=bottom,open=true": {
"model": "betterend:pattern/%block%",
"x": 90,
"y": 270
},
"facing=west,half=top,open=false": {
"model": "betterend:pattern/%block%",
"x": 180,
"y": 270
},
"facing=west,half=top,open=true": {
"model": "betterend:pattern/%block%",
"x": 270,
"y": 90
}
}
}