Item patterns fix
This commit is contained in:
parent
0dca63cfcc
commit
9b0303f1d7
8 changed files with 199 additions and 9 deletions
190
src/main/resources/assets/bclib/models/block/chest_item.json
Normal file
190
src/main/resources/assets/bclib/models/block/chest_item.json
Normal file
|
@ -0,0 +1,190 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"parent": "block/block",
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"faces": {
|
||||
"down": {
|
||||
"rotation": 180,
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
3.5,
|
||||
4.75,
|
||||
7,
|
||||
8.25
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
3.5,
|
||||
10.75,
|
||||
7,
|
||||
8.25
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
10.5,
|
||||
10.75,
|
||||
14,
|
||||
8.25
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0,
|
||||
10.75,
|
||||
3.5,
|
||||
8.25
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
7,
|
||||
10.75,
|
||||
10.5,
|
||||
8.25
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
1,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"to": [
|
||||
15,
|
||||
10,
|
||||
15
|
||||
]
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"faces": {
|
||||
"east": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
3.5,
|
||||
4.75,
|
||||
7,
|
||||
3.75
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
10.5,
|
||||
4.75,
|
||||
14,
|
||||
3.75
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0,
|
||||
4.75,
|
||||
3.5,
|
||||
3.75
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"rotation": 180,
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
7,
|
||||
0,
|
||||
10.5,
|
||||
3.5
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
7,
|
||||
4.75,
|
||||
10.5,
|
||||
3.75
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
1,
|
||||
10,
|
||||
1
|
||||
],
|
||||
"to": [
|
||||
15,
|
||||
14,
|
||||
15
|
||||
]
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"faces": {
|
||||
"down": {
|
||||
"rotation": 180,
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0.25,
|
||||
0,
|
||||
0.75,
|
||||
0.25
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0,
|
||||
1.25,
|
||||
0.25,
|
||||
0.25
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0.5,
|
||||
1.25,
|
||||
1,
|
||||
0.25
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"rotation": 180,
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0.75,
|
||||
0,
|
||||
1.25,
|
||||
0.25
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0,
|
||||
1.25,
|
||||
0.25,
|
||||
0.25
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
7,
|
||||
7,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
9,
|
||||
11,
|
||||
1
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betterend:block/%texture%"
|
||||
"layer0": "%modid%:block/%texture%"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/button_inventory",
|
||||
"textures": {
|
||||
"texture": "betterend:block/%texture%"
|
||||
"texture": "%modid%:block/%texture%"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "betterend:block/chest_item",
|
||||
"parent": "bclib:block/chest_item",
|
||||
"textures": {
|
||||
"texture": "betterend:entity/chest/%texture%"
|
||||
"texture": "%modid%:entity/chest/%texture%"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_inventory",
|
||||
"textures": {
|
||||
"texture": "betterend:block/%texture%"
|
||||
"texture": "%modid%:block/%texture%"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betterend:item/%texture%"
|
||||
"layer0": "%modid%:item/%texture%"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "item/handheld",
|
||||
"textures": {
|
||||
"layer0": "betterend:item/%texture%"
|
||||
"layer0": "%modid%:item/%texture%"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/wall_inventory",
|
||||
"parent": "block/wall_inventory",
|
||||
"textures": {
|
||||
"wall": "betterend:block/%texture%"
|
||||
"wall": "%modid%:block/%texture%"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue