Fixes charger model and adds an appropriate item model. (#29)

This commit is contained in:
shartte 2016-08-14 13:28:45 +02:00 committed by dpeter99
parent 7f923d7f25
commit a422de6adb
3 changed files with 15 additions and 11 deletions

View file

@ -1,5 +1,5 @@
{ {
"variants": { "variants": {
"normal": { "model": "appliedenergistics2:tile.BlockCharger", "y":180} "normal": { "model": "appliedenergistics2:tile.BlockCharger" }
} }
} }

View file

@ -1,4 +1,5 @@
{ {
"parent": "block/orientable",
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)", "__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
"textures": { "textures": {
"0": "appliedenergistics2:blocks/BlockChargerSide", "0": "appliedenergistics2:blocks/BlockChargerSide",
@ -8,8 +9,8 @@
"elements": [ "elements": [
{ {
"name": "Back", "name": "Back",
"from": [ 6.0, 0.0, 0.0 ], "from": [ 6.0, 0.0, 15.0 ],
"to": [ 10.0, 16.0, 1.0 ], "to": [ 10.0, 16.0, 16.0 ],
"faces": { "faces": {
"north": { "texture": "#0", "uv": [ 0.0, 0.0, 4.0, 16.0 ] }, "north": { "texture": "#0", "uv": [ 0.0, 0.0, 4.0, 16.0 ] },
"east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 16.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 16.0 ] },
@ -21,8 +22,8 @@
}, },
{ {
"name": "Bottom", "name": "Bottom",
"from": [ 2.0, 0.0, 1.0 ], "from": [ 2.0, 0.0, 2.0 ],
"to": [ 14.0, 2.0, 14.0 ], "to": [ 14.0, 2.0, 15.0 ],
"faces": { "faces": {
"north": { "texture": "#0", "uv": [ 0.0, 0.0, 12.0, 2.0 ] }, "north": { "texture": "#0", "uv": [ 0.0, 0.0, 12.0, 2.0 ] },
"east": { "texture": "#0", "uv": [ 0.0, 0.0, 13.0, 2.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 13.0, 2.0 ] },
@ -34,8 +35,8 @@
}, },
{ {
"name": "Top", "name": "Top",
"from": [ 2.0, 13.0, 1.0 ], "from": [ 2.0, 13.0, 2.0 ],
"to": [ 14.0, 16.0, 14.0 ], "to": [ 14.0, 16.0, 15.0 ],
"faces": { "faces": {
"north": { "texture": "#0", "uv": [ 0.0, 0.0, 12.0, 3.0 ] }, "north": { "texture": "#0", "uv": [ 0.0, 0.0, 12.0, 3.0 ] },
"east": { "texture": "#0", "uv": [ 0.0, 0.0, 13.0, 3.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 13.0, 3.0 ] },
@ -47,8 +48,8 @@
}, },
{ {
"name": "BottomTop", "name": "BottomTop",
"from": [ 3.0, 2.0, 3.0 ], "from": [ 3.0, 2.0, 3.0 ],
"to": [ 13.0, 3.0, 13.0 ], "to": [ 13.0, 3.0, 13.0 ],
"faces": { "faces": {
"north": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] }, "north": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },
"east": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },
@ -60,8 +61,8 @@
}, },
{ {
"name": "TopTop", "name": "TopTop",
"from": [ 3.0, 12.0, 3.0 ], "from": [ 3.0, 12.0, 3.0 ],
"to": [ 13.0, 13.0, 13.0 ], "to": [ 13.0, 13.0, 13.0 ],
"faces": { "faces": {
"north": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] }, "north": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },
"east": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 10.0, 1.0 ] },

View file

@ -0,0 +1,3 @@
{
"parent": "appliedenergistics2:block/tile.BlockCharger"
}