First pass of implementing rendering for crafting cubes (#7)

This commit is contained in:
Sebastian Hartte
2016-09-12 01:11:38 +02:00
parent f35a951b09
commit 5b6ed0cfd0
57 changed files with 980 additions and 173 deletions
@@ -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"
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 B