Added a texture for the open sides of hive blocks

This commit is contained in:
Sollace 2020-06-02 17:28:45 +02:00
parent 869f2af288
commit 73182d71fc
7 changed files with 26 additions and 12 deletions

View file

@ -1,13 +1,13 @@
{ {
"variants": { "variants": {
"axis=x,state=growing": { "model": "unicopia:block/hive_growing" }, "axis=x,state=growing": { "model": "unicopia:block/hive_growing", "x": 90 },
"axis=y,state=growing": { "model": "unicopia:block/hive_growing" }, "axis=y,state=growing": { "model": "unicopia:block/hive_growing" },
"axis=z,state=growing": { "model": "unicopia:block/hive_growing" }, "axis=z,state=growing": { "model": "unicopia:block/hive_growing", "x": 90, "y": 90 },
"axis=x,state=stable": { "model": "unicopia:block/hive_stable" }, "axis=x,state=stable": { "model": "unicopia:block/hive_stable", "x": 90 },
"axis=y,state=stable": { "model": "unicopia:block/hive_stable" }, "axis=y,state=stable": { "model": "unicopia:block/hive_stable" },
"axis=z,state=stable": { "model": "unicopia:block/hive_stable" }, "axis=z,state=stable": { "model": "unicopia:block/hive_stable", "x": 90, "y": 90 },
"axis=x,state=dying": { "model": "unicopia:block/hive_dying" }, "axis=x,state=dying": { "model": "unicopia:block/hive_dying", "x": 90 },
"axis=y,state=dying": { "model": "unicopia:block/hive_dying" }, "axis=y,state=dying": { "model": "unicopia:block/hive_dying" },
"axis=z,state=dying": { "model": "unicopia:block/hive_dying" } "axis=z,state=dying": { "model": "unicopia:block/hive_dying", "x": 90, "y": 90 }
} }
} }

View file

@ -1,6 +1,7 @@
{ {
"parent": "block/cube_all", "parent": "block/cube_column",
"textures": { "textures": {
"all": "unicopia:blocks/hive_dying" "end": "unicopia:blocks/hive_dying",
"side": "unicopia:blocks/hive_end"
} }
} }

View file

@ -1,6 +1,7 @@
{ {
"parent": "block/cube_all", "parent": "block/cube_column",
"textures": { "textures": {
"all": "unicopia:blocks/hive_growing" "end": "unicopia:blocks/hive_growing",
"side": "unicopia:blocks/hive_end"
} }
} }

View file

@ -1,6 +1,7 @@
{ {
"parent": "block/cube_all", "parent": "block/cube_column",
"textures": { "textures": {
"all": "unicopia:blocks/hive_stable" "end": "unicopia:blocks/hive_stable",
"side": "unicopia:blocks/hive_end"
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1,11 @@
{
"animation": {
"frametime": 10,
"frames": [
0, 1, 2, 3,
1, 2, 3, 0,
2, 3, 0, 1,
3, 0, 1, 2
]
}
}