mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 19:46:42 +01:00
Added a texture for the open sides of hive blocks
This commit is contained in:
parent
869f2af288
commit
73182d71fc
7 changed files with 26 additions and 12 deletions
|
@ -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 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
BIN
src/main/resources/assets/unicopia/textures/blocks/hive_end.png
Normal file
BIN
src/main/resources/assets/unicopia/textures/blocks/hive_end.png
Normal file
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 |
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"animation": {
|
||||||
|
"frametime": 10,
|
||||||
|
"frames": [
|
||||||
|
0, 1, 2, 3,
|
||||||
|
1, 2, 3, 0,
|
||||||
|
2, 3, 0, 1,
|
||||||
|
3, 0, 1, 2
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue