Applied-Energistics-2-tiler.../src/main/resources/assets/appliedenergistics2/models/block/tiny_tnt.json
yueh 581822b234 Fixes #2499: Tiny TNT model and hitbox not aligned.
Fixes entity renderer translating it 1/4 block to high compared to the
hitbox.
Fixed the hitbox being either a bit too small or too large depending on
the used constructor.
Updated the model for tiny TNT to be a bit more compact.
2016-10-24 13:15:46 +02:00

42 lines
1.1 KiB
JSON

{
"parent": "block/block",
"elements": [
{
"from": [ 4, 0, 4 ],
"to": [ 12, 8, 12 ],
"faces": {
"down": {
"texture": "#bottom",
"uv": [ 0, 0, 16, 16 ]
},
"east": {
"texture": "#side",
"uv": [ 0, 0, 16, 16 ]
},
"north": {
"texture": "#side",
"uv": [ 0, 0, 16, 16 ]
},
"south": {
"texture": "#side",
"uv": [ 0, 0, 16, 16 ]
},
"up": {
"texture": "#top",
"uv": [ 0, 0, 16, 16 ]
},
"west": {
"texture": "#side",
"uv": [ 0, 0, 16, 16 ]
}
}
}
],
"textures": {
"particle": "blocks/tnt_side",
"side": "blocks/tnt_side",
"top": "blocks/tnt_top",
"bottom": "blocks/tnt_bottom"
}
}