First pass of implementing rendering for crafting cubes (#7)
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"normal": { "model": "appliedenergistics2:crafting/accelerator" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"normal": { "model": "appliedenergistics2:crafting/monitor" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"normal": { "model": "appliedenergistics2:crafting/storage_16k" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"normal": { "model": "appliedenergistics2:crafting/storage_1k" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"normal": { "model": "appliedenergistics2:crafting/storage_4k" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"normal": { "model": "appliedenergistics2:crafting/storage_64k" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"normal": { "model": "appliedenergistics2:crafting/unit" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/accelerator"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"north": "appliedenergistics2:blocks/crafting/monitor",
|
||||
"east": "appliedenergistics2:blocks/crafting/unit",
|
||||
"west": "appliedenergistics2:blocks/crafting/unit",
|
||||
"south": "appliedenergistics2:blocks/crafting/unit",
|
||||
"up": "appliedenergistics2:blocks/crafting/unit",
|
||||
"down": "appliedenergistics2:blocks/crafting/unit"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/storage_16k"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/storage_1k"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/storage_4k"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/storage_64k"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/unit"
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,3 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/accelerator"
|
||||
}
|
||||
"parent": "appliedenergistics2:block/crafting/accelerator"
|
||||
}
|
||||
@@ -1,11 +1,3 @@
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"north": "appliedenergistics2:blocks/crafting/monitor",
|
||||
"east": "appliedenergistics2:blocks/crafting/unit",
|
||||
"west": "appliedenergistics2:blocks/crafting/unit",
|
||||
"south": "appliedenergistics2:blocks/crafting/unit",
|
||||
"up": "appliedenergistics2:blocks/crafting/unit",
|
||||
"down": "appliedenergistics2:blocks/crafting/unit"
|
||||
}
|
||||
"parent": "appliedenergistics2:block/crafting/monitor"
|
||||
}
|
||||
@@ -1,6 +1,3 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/storage_16k"
|
||||
}
|
||||
"parent": "appliedenergistics2:block/crafting/storage_16k"
|
||||
}
|
||||
@@ -1,6 +1,3 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/storage_1k"
|
||||
}
|
||||
"parent": "appliedenergistics2:block/crafting/storage_1k"
|
||||
}
|
||||
@@ -1,6 +1,3 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/storage_4k"
|
||||
}
|
||||
"parent": "appliedenergistics2:block/crafting/storage_4k"
|
||||
}
|
||||
@@ -1,6 +1,3 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/storage_64k"
|
||||
}
|
||||
"parent": "appliedenergistics2:block/crafting/storage_64k"
|
||||
}
|
||||
@@ -1,6 +1,3 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/crafting/unit"
|
||||
}
|
||||
"parent": "appliedenergistics2:block/crafting/unit"
|
||||
}
|
||||
|
Before Width: | Height: | Size: 274 B After Width: | Height: | Size: 274 B |
|
Before Width: | Height: | Size: 345 B After Width: | Height: | Size: 345 B |
|
Before Width: | Height: | Size: 300 B After Width: | Height: | Size: 300 B |
|
Before Width: | Height: | Size: 259 B After Width: | Height: | Size: 259 B |
|
Before Width: | Height: | Size: 240 B After Width: | Height: | Size: 240 B |
|
Before Width: | Height: | Size: 245 B After Width: | Height: | Size: 245 B |
|
Before Width: | Height: | Size: 189 B After Width: | Height: | Size: 189 B |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 273 B After Width: | Height: | Size: 273 B |
|
Before Width: | Height: | Size: 281 B After Width: | Height: | Size: 281 B |
|
Before Width: | Height: | Size: 276 B After Width: | Height: | Size: 276 B |
|
Before Width: | Height: | Size: 279 B After Width: | Height: | Size: 279 B |
|
Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 318 B |
|
Before Width: | Height: | Size: 243 B |
|
Before Width: | Height: | Size: 217 B |