Наложение текстуры на модельку .json

Версия Minecraft
1.12.2
63
0
Есть у меня папка mm (сокращенное название моего мода) с папками:
1.blockstates =>tesseract (название моего блока), вот его кодик:
{
"variants": {
"normal": { "model": "fg:tesseract" }
}
}
2.lang (перевод, он тут не мешает:D);
3.models=>block в которой файлик tesseract.json, в этом файле есть код (написан в программе "model creator", написан он точно правильно ).
3.models=>item в котором как таки не странно файлик tesseract.json (я не знаю стоило ли его добавлять), вот что в нём написано:
{
"parent": "fg:block/tesseract"
}
4.textures=>blocks с 4-мя текстурами моего блока (моделированного блока);
4.textures=>текстуры левых предметов (они тут не нужны).
Проблема в том что у меня моделька вроде-бы грузится, а вот текстурка на неё нет, я прошу вас рассказать мне как нужно правильно добавлять текстурку (хотя я её в models=>block добавил), и убрать баг с просвечиванием блока, как показано на скриншоте:
 

Вложения

  • Screenshot_2.png
    Screenshot_2.png
    954 KB · Просмотры: 20
Решение
Для начала советую изменить его физическую коллизию/хитбокс: Хитбокс для блока
Во вторых у тебя не получиться вставить сердцевину в прозрачный куб с текстурой стекла:
1535315895965.png
Придётся сделать вот так:
1535316172649.png
JSON:
{
    "textures": {
        "0": "Desktop/tesserackt"
    },
    "elements": [
        {
            "from": [13, 0, 2],
            "to": [14, 12, 3],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv"...
2,932
44
598
63
0
@PvPGarik
tesseract в:
blockstates\tesseract.json :
JSON:
{
    "variants": {
        "normal": { "model": "fg:tesseract" }
    }
}
tesseract в:
models\block\tesseract.json :
JSON:
{
"textures": {
             "0":"fg:blocks/obvodka.png",
             "1":"fg:blocks/center2.png",
             "2":"fg:blocks/center.png",
             "3":"fg:blocks/steklo.png",
            },
    },
    "elements": [
        {
            "name": "Cube",
            "from": [ 3.0, 3.0, 3.0 ],
            "to": [ 13.0, 4.0, 4.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 4.0, 3.0 ],
            "to": [ 13.0, 13.0, 4.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 12.0, 3.0 ],
            "to": [ 12.0, 13.0, 4.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 4.0, 3.0 ],
            "to": [ 4.0, 13.0, 4.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 12.0, 4.0 ],
            "to": [ 4.0, 13.0, 12.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 12.0, 4.0 ],
            "to": [ 13.0, 13.0, 12.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 3.0, 4.0 ],
            "to": [ 13.0, 4.0, 12.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 3.0, 12.0 ],
            "to": [ 12.0, 4.0, 13.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 3.0, 12.0 ],
            "to": [ 4.0, 13.0, 13.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 3.0, 12.0 ],
            "to": [ 13.0, 13.0, 13.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 12.0, 12.0 ],
            "to": [ 12.0, 13.0, 13.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 10.0, 7.0, 7.0 ],
            "to": [ 11.0, 9.0, 9.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 6.0, 6.0, 6.0 ],
            "to": [ 10.0, 10.0, 10.0 ],
            "faces": {
                "north": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] },
                "east": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] },
                "south": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] },
                "west": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] },
                "up": { "texture": "#2", "uv": [ 0.0, 1.0, 4.0, 5.0 ] },
                "down": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 7.0, 7.0, 10.0 ],
            "to": [ 9.0, 9.0, 11.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 7.0, 7.0, 5.0 ],
            "to": [ 9.0, 9.0, 6.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 7.0, 10.0, 7.0 ],
            "to": [ 9.0, 11.0, 9.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "up": { "texture": "#1", "uv": [ 2.0, 2.0, 4.0, 4.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 7.0, 5.0, 7.0 ],
            "to": [ 9.0, 6.0, 9.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 5.0, 7.0, 7.0 ],
            "to": [ 6.0, 9.0, 9.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, -14.0, 2.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 3.0, 4.0 ],
            "to": [ 4.0, 4.0, 12.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 4.0, 3.0 ],
            "to": [ 12.0, 12.0, 4.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 4.0, 3.0 ],
            "to": [ 12.0, 12.0, 4.0 ],
            "faces": {
                "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "east": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "south": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "west": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "up": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 4.0, 4.0 ],
            "to": [ 4.0, 12.0, 12.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 12.0, 4.0 ],
            "to": [ 12.0, 13.0, 12.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 4.0, 4.0 ],
            "to": [ 13.0, 12.0, 12.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, -1.0, 1.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 4.0, 12.0 ],
            "to": [ 12.0, 12.0, 13.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 4.0, 12.0 ],
            "to": [ 12.0, 12.0, 13.0 ],
            "faces": {
                "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "east": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "south": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "west": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "up": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 3.0, 4.0 ],
            "to": [ 12.0, 6.0, 12.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 3.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 3.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 3.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }
            }
        }
    ]
}
tesseract В:
models\item\tesseract.json :
JSON:
{
   "parent": "fg:block/tesseract"
}
 
2,932
44
598
Ай..... Какое же незнание структуры json ! Учи матчасть: JSON — Википедия и вот Введение в JSON – Стас – Medium. Так же советую этот сайт для проверки твоих json"ов: JSON Editor Online - view, edit and format JSON online

Модель блока неправильно сделана, надо вот так:
JSON:
{
"textures": {
             "0":"fg:blocks/obvodka.png",
             "1":"fg:blocks/center2.png",
             "2":"fg:blocks/center.png",
             "3":"fg:blocks/steklo.png"
    },
    "elements": [
        {
            "name": "Cube",
            "from": [ 3.0, 3.0, 3.0 ],
            "to": [ 13.0, 4.0, 4.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 4.0, 3.0 ],
            "to": [ 13.0, 13.0, 4.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 12.0, 3.0 ],
            "to": [ 12.0, 13.0, 4.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 4.0, 3.0 ],
            "to": [ 4.0, 13.0, 4.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 9.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 12.0, 4.0 ],
            "to": [ 4.0, 13.0, 12.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 12.0, 4.0 ],
            "to": [ 13.0, 13.0, 12.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 3.0, 4.0 ],
            "to": [ 13.0, 4.0, 12.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 3.0, 12.0 ],
            "to": [ 12.0, 4.0, 13.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 3.0, 12.0 ],
            "to": [ 4.0, 13.0, 13.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 3.0, 12.0 ],
            "to": [ 13.0, 13.0, 13.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 10.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 12.0, 12.0 ],
            "to": [ 12.0, 13.0, 13.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 10.0, 7.0, 7.0 ],
            "to": [ 11.0, 9.0, 9.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 6.0, 6.0, 6.0 ],
            "to": [ 10.0, 10.0, 10.0 ],
            "faces": {
                "north": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] },
                "east": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] },
                "south": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] },
                "west": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] },
                "up": { "texture": "#2", "uv": [ 0.0, 1.0, 4.0, 5.0 ] },
                "down": { "texture": "#2", "uv": [ 0.0, 0.0, 4.0, 4.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 7.0, 7.0, 10.0 ],
            "to": [ 9.0, 9.0, 11.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 7.0, 7.0, 5.0 ],
            "to": [ 9.0, 9.0, 6.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 7.0, 10.0, 7.0 ],
            "to": [ 9.0, 11.0, 9.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "up": { "texture": "#1", "uv": [ 2.0, 2.0, 4.0, 4.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 7.0, 5.0, 7.0 ],
            "to": [ 9.0, 6.0, 9.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 5.0, 7.0, 7.0 ],
            "to": [ 6.0, 9.0, 9.0 ],
            "faces": {
                "north": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "east": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "south": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] },
                "west": { "texture": "#1", "uv": [ 0.0, 0.0, 2.0, 2.0 ] },
                "up": { "texture": "#1", "uv": [ 0.0, 0.0, -14.0, 2.0 ] },
                "down": { "texture": "#1", "uv": [ 0.0, 0.0, 1.0, 2.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 3.0, 4.0 ],
            "to": [ 4.0, 4.0, 12.0 ],
            "faces": {
                "north": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "west": { "texture": "#0", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 4.0, 3.0 ],
            "to": [ 12.0, 12.0, 4.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 4.0, 3.0 ],
            "to": [ 12.0, 12.0, 4.0 ],
            "faces": {
                "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "east": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "south": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "west": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "up": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 3.0, 4.0, 4.0 ],
            "to": [ 4.0, 12.0, 12.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 12.0, 4.0 ],
            "to": [ 12.0, 13.0, 12.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 12.0, 4.0, 4.0 ],
            "to": [ 13.0, 12.0, 12.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, -1.0, 1.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 4.0, 12.0 ],
            "to": [ 12.0, 12.0, 13.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 4.0, 12.0 ],
            "to": [ 12.0, 12.0, 13.0 ],
            "faces": {
                "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "east": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "south": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "west": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 8.0 ] },
                "up": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 1.0 ] },
                "down": { "texture": "#-1", "uv": [ 0.0, 0.0, 8.0, 1.0 ] }
            }
        },
        {
            "name": "Cube",
            "from": [ 4.0, 3.0, 4.0 ],
            "to": [ 12.0, 6.0, 12.0 ],
            "faces": {
                "north": { "texture": "#3", "uv": [ 0.0, 0.0, 1.0, 1.0 ] },
                "east": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 3.0 ] },
                "south": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 3.0 ] },
                "west": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 3.0 ] },
                "up": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] },
                "down": { "texture": "#3", "uv": [ 0.0, 0.0, 8.0, 8.0 ] }
            }
        }
    ]
}
 
2,932
44
598
Для начала советую изменить его физическую коллизию/хитбокс: Хитбокс для блока
Во вторых у тебя не получиться вставить сердцевину в прозрачный куб с текстурой стекла:
1535315895965.png
Придётся сделать вот так:
1535316172649.png
JSON:
{
    "textures": {
        "0": "Desktop/tesserackt"
    },
    "elements": [
        {
            "from": [13, 0, 2],
            "to": [14, 12, 3],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [2, 0, 2],
            "to": [3, 12, 3],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [13, 0, 13],
            "to": [14, 12, 14],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [2, 0, 13],
            "to": [3, 12, 14],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [3, 1, 3],
            "to": [13, 11, 4],
            "faces": {
                "north": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "east": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "south": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "west": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "up": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "down": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"}
            }
        },
        {
            "from": [3, 1, 12],
            "to": [13, 11, 13],
            "faces": {
                "north": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "east": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "south": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "west": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "up": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "down": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"}
            }
        },
        {
            "from": [3, 1, 3],
            "to": [4, 11, 13],
            "faces": {
                "north": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "east": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "south": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "west": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "up": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0", "rotation": 90},
                "down": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0", "rotation": 270}
            }
        },
        {
            "from": [12, 1, 3],
            "to": [13, 11, 13],
            "faces": {
                "north": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "east": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "south": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "west": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0"},
                "up": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0", "rotation": 90},
                "down": {"uv": [1.33281, 1.33281, 14.33203, 14.33203], "texture": "#0", "rotation": 270}
            }
        },
        {
            "from": [3, 0, 13],
            "to": [13, 1, 14],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [3, 0, 2],
            "to": [13, 1, 3],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [3, 11, 2],
            "to": [13, 12, 3],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [3, 11, 13],
            "to": [13, 12, 14],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [13, 11, 3],
            "to": [14, 12, 13],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [13, 0, 3],
            "to": [14, 1, 13],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [2, 11, 3],
            "to": [3, 12, 13],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [2, 0, 3],
            "to": [3, 1, 13],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#0"}
            }
        },
        {
            "from": [3, 11, 3],
            "to": [13, 12, 13],
            "faces": {
                "north": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "east": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "south": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "west": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "up": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "down": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"}
            }
        },
        {
            "from": [4, 11, 4],
            "to": [12, 12, 12],
            "faces": {
                "north": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "east": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "south": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "west": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "up": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "down": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"}
            }
        },
        {
            "from": [4, 1, 4],
            "to": [12, 2, 12],
            "faces": {
                "north": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "east": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "south": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "west": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "up": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"},
                "down": {"uv": [1.33281, 1.33281, 14.66562, 14.66562], "texture": "#0"}
            }
        },
        {
            "from": [7, 5, 7],
            "to": [9, 7, 9],
            "faces": {
                "north": {"uv": [0, 0, 15.33281, 0.66641], "texture": "#0"},
                "east": {"uv": [0, 0, 15.33281, 0.66641], "texture": "#0"},
                "south": {"uv": [0, 0, 15.33281, 0.66641], "texture": "#0"},
                "west": {"uv": [0, 0, 15.33281, 0.66641], "texture": "#0"},
                "up": {"uv": [0, 0, 15.33281, 0.66641], "texture": "#0"},
                "down": {"uv": [0, 0, 15.33281, 0.66641], "texture": "#0"}
            }
        }
    ]
}
(Делал всё на скорую руку)

Думаю тебе стоит смотреть в сторону "печёных моделей": Добавление моделей блокам и предметам (Может они помогут)
 
Сверху