fix ME Chest rendering (#246)
* Update dependencies.gradle * fix ME Chest rendering
This commit is contained in:
@@ -1,60 +1,60 @@
|
||||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "appliedenergistics2:chest/base"
|
||||
},
|
||||
"variants": {
|
||||
"slot_state": {
|
||||
"empty": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_off"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_empty"
|
||||
}
|
||||
}
|
||||
},
|
||||
"offline": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_off"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_offline"
|
||||
}
|
||||
}
|
||||
},
|
||||
"online": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_on"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_online"
|
||||
}
|
||||
}
|
||||
},
|
||||
"types_full": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_on"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_types_full"
|
||||
}
|
||||
}
|
||||
},
|
||||
"full": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_on"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_full"
|
||||
}
|
||||
}
|
||||
}
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "appliedenergistics2:chest/base"
|
||||
},
|
||||
"variants": {
|
||||
"slot_state": {
|
||||
"empty": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_off"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_empty"
|
||||
}
|
||||
}
|
||||
},
|
||||
"offline": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_off"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_offline"
|
||||
}
|
||||
}
|
||||
},
|
||||
"online": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_on"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_online"
|
||||
}
|
||||
}
|
||||
},
|
||||
"types_full": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_on"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_types_full"
|
||||
}
|
||||
}
|
||||
},
|
||||
"full": {
|
||||
"submodel": {
|
||||
"lights": {
|
||||
"model": "appliedenergistics2:chest/lights_on"
|
||||
},
|
||||
"state": {
|
||||
"model": "appliedenergistics2:chest/cell_state_full"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"4": "appliedenergistics2:blocks/drive_inside",
|
||||
"up": "appliedenergistics2:blocks/chest/top",
|
||||
|
||||
+22
-23
@@ -1,24 +1,23 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"backdrop": "appliedenergistics2:blocks/chest/cell_state_backdrop",
|
||||
"state": "appliedenergistics2:blocks/chest/cell_state_full"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [5, 4, 0],
|
||||
"to": [11, 6, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 11, 12], "texture": "#backdrop"},
|
||||
"up": {"uv": [5, 9, 11, 10], "texture": "#backdrop"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#state"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
"textures": {
|
||||
"backdrop": "appliedenergistics2:blocks/chest/cell_state_backdrop",
|
||||
"state": "appliedenergistics2:blocks/chest/cell_state_full"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [5, 4, 0],
|
||||
"to": [11, 6, 1],
|
||||
"faces": {
|
||||
"north": { "uv": [5, 10, 11, 12], "texture": "#backdrop" },
|
||||
"up": { "uv": [5, 9, 11, 10], "texture": "#backdrop" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": { "uv": [0, 0, 16, 16], "texture": "#state" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
+14
-15
@@ -1,16 +1,15 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"state": "appliedenergistics2:blocks/chest/cell_state_offline"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [5, 4, 0],
|
||||
"to": [11, 6, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 11, 12], "texture": "#state"},
|
||||
"up": {"uv": [5, 9, 11, 10], "texture": "#state"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
"textures": {
|
||||
"state": "appliedenergistics2:blocks/chest/cell_state_offline"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [5, 4, 0],
|
||||
"to": [11, 6, 1],
|
||||
"faces": {
|
||||
"north": { "uv": [5, 10, 11, 12], "texture": "#state" },
|
||||
"up": { "uv": [5, 9, 11, 10], "texture": "#state" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
+22
-23
@@ -1,24 +1,23 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"backdrop": "appliedenergistics2:blocks/chest/cell_state_backdrop",
|
||||
"state": "appliedenergistics2:blocks/chest/cell_state_online"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [5, 4, 0],
|
||||
"to": [11, 6, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 11, 12], "texture": "#backdrop"},
|
||||
"up": {"uv": [5, 9, 11, 10], "texture": "#backdrop"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#state"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
"textures": {
|
||||
"backdrop": "appliedenergistics2:blocks/chest/cell_state_backdrop",
|
||||
"state": "appliedenergistics2:blocks/chest/cell_state_online"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [5, 4, 0],
|
||||
"to": [11, 6, 1],
|
||||
"faces": {
|
||||
"north": { "uv": [5, 10, 11, 12], "texture": "#backdrop" },
|
||||
"up": { "uv": [5, 9, 11, 10], "texture": "#backdrop" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": { "uv": [0, 0, 16, 16], "texture": "#state" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
+22
-23
@@ -1,24 +1,23 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"backdrop": "appliedenergistics2:blocks/chest/cell_state_backdrop",
|
||||
"state": "appliedenergistics2:blocks/chest/cell_state_types_full"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [5, 4, 0],
|
||||
"to": [11, 6, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [5, 10, 11, 12], "texture": "#backdrop"},
|
||||
"up": {"uv": [5, 9, 11, 10], "texture": "#backdrop"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#state"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
"textures": {
|
||||
"backdrop": "appliedenergistics2:blocks/chest/cell_state_backdrop",
|
||||
"state": "appliedenergistics2:blocks/chest/cell_state_types_full"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [5, 4, 0],
|
||||
"to": [11, 6, 1],
|
||||
"faces": {
|
||||
"north": { "uv": [5, 10, 11, 12], "texture": "#backdrop" },
|
||||
"up": { "uv": [5, 9, 11, 10], "texture": "#backdrop" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": { "uv": [0, 0, 16, 16], "texture": "#state" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,25 +1,17 @@
|
||||
{
|
||||
"textures": {
|
||||
"lights": "appliedenergistics2:blocks/chest/lights_off"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"up": {
|
||||
"texture": "#lights",
|
||||
"tintindex": 3
|
||||
}
|
||||
}
|
||||
"textures": {
|
||||
"lights": "appliedenergistics2:blocks/chest/lights_off"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"up": {
|
||||
"texture": "#lights",
|
||||
"tintindex": 3
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,79 +1,54 @@
|
||||
{
|
||||
"ae2_uvl_marker": true,
|
||||
"textures": {
|
||||
"lights_bright": "appliedenergistics2:blocks/chest/lights_on_bright",
|
||||
"lights_medium": "appliedenergistics2:blocks/chest/lights_on_medium",
|
||||
"lights_dark": "appliedenergistics2:blocks/chest/lights_on_dark"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"up": {
|
||||
"texture": "#lights_bright",
|
||||
"tintindex": 3,
|
||||
"unlit": true,
|
||||
"uvlightmap": {
|
||||
"block": 15,
|
||||
"sky": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"up": {
|
||||
"texture": "#lights_medium",
|
||||
"tintindex": 2,
|
||||
"unlit": true,
|
||||
"uvlightmap": {
|
||||
"block": 15,
|
||||
"sky": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
16,
|
||||
16,
|
||||
16
|
||||
],
|
||||
"faces": {
|
||||
"up": {
|
||||
"texture": "#lights_dark",
|
||||
"tintindex": 1,
|
||||
"unlit": true,
|
||||
"uvlightmap": {
|
||||
"block": 15,
|
||||
"sky": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
"textures": {
|
||||
"lights_bright": "appliedenergistics2:blocks/chest/lights_on_bright",
|
||||
"lights_medium": "appliedenergistics2:blocks/chest/lights_on_medium",
|
||||
"lights_dark": "appliedenergistics2:blocks/chest/lights_on_dark"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"up": {
|
||||
"texture": "#lights_bright",
|
||||
"tintindex": 3,
|
||||
"unlit": true,
|
||||
"uvlightmap": {
|
||||
"block": 15,
|
||||
"sky": 15
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"up": {
|
||||
"texture": "#lights_medium",
|
||||
"tintindex": 2,
|
||||
"unlit": true,
|
||||
"uvlightmap": {
|
||||
"block": 15,
|
||||
"sky": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"up": {
|
||||
"texture": "#lights_dark",
|
||||
"tintindex": 1,
|
||||
"unlit": true,
|
||||
"uvlightmap": {
|
||||
"block": 15,
|
||||
"sky": 15
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user