Create/src/main/resources/assets/create/models/block/ctblock.json
simibubi 4e1b33c0ea Connecting the Quads
- Added models and a block interface for connected textures
- Added Framed glass as an example block
2019-11-17 21:25:59 +01:00

17 lines
568 B
JSON

{
"parent": "block/block",
"elements": [
{
"from": [0, 0, 0],
"to": [16, 16, 16],
"faces": {
"north": {"uv": [0, 0, 2, 2], "texture": "#sheet", "cullface": "north"},
"east": {"uv": [0, 0, 2, 2], "texture": "#sheet", "cullface": "east"},
"south": {"uv": [0, 0, 2, 2], "texture": "#sheet", "cullface": "south"},
"west": {"uv": [0, 0, 2, 2], "texture": "#sheet", "cullface": "west"},
"up": {"uv": [0, 0, 2, 2], "texture": "#sheet", "cullface": "up"},
"down": {"uv": [0, 0, 2, 2], "texture": "#sheet", "cullface": "down"}
}
}
]
}