Bamboo / hevea fences
This commit is contained in:
parent
3d9be8923d
commit
c1635ea943
13 changed files with 156 additions and 0 deletions
src/resources/assets/mmm
blockstates/deco/fence
lang
models
17
src/resources/assets/mmm/blockstates/deco/fence/bamboo.json
Normal file
17
src/resources/assets/mmm/blockstates/deco/fence/bamboo.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "apply": { "model": "mmm:deco/fence/bamboo/post" }},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "mmm:deco/fence/bamboo/side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "mmm:deco/fence/bamboo/side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "mmm:deco/fence/bamboo/side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "mmm:deco/fence/bamboo/side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
17
src/resources/assets/mmm/blockstates/deco/fence/hevea.json
Normal file
17
src/resources/assets/mmm/blockstates/deco/fence/hevea.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "apply": { "model": "mmm:deco/fence/hevea/post" }},
|
||||
{ "when": { "north": "true" },
|
||||
"apply": { "model": "mmm:deco/fence/hevea/side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": "true" },
|
||||
"apply": { "model": "mmm:deco/fence/hevea/side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": "true" },
|
||||
"apply": { "model": "mmm:deco/fence/hevea/side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": "true" },
|
||||
"apply": { "model": "mmm:deco/fence/hevea/side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
|
@ -292,3 +292,5 @@ tile.mmm.deco.throne.hevea.silver.name=Hevea Throne (Silver)
|
|||
tile.mmm.deco.throne.hevea.white.name=Hevea Throne (White)
|
||||
tile.mmm.deco.throne.hevea.yellow.name=Hevea Throne (Yellow)
|
||||
|
||||
tile.mmm.deco.fence.hevea.name=Hevea Fence
|
||||
tile.mmm.deco.fence.bamboo.name=Bamboo Fence
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/fence_post",
|
||||
"textures": {
|
||||
"texture": "mmm:blocks/materials/planks/bamboo"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_side",
|
||||
"textures": {
|
||||
"texture": "mmm:blocks/materials/planks/bamboo"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/fence_post",
|
||||
"textures": {
|
||||
"texture": "mmm:blocks/materials/planks/hevea"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_side",
|
||||
"textures": {
|
||||
"texture": "mmm:blocks/materials/planks/hevea"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/fence_inventory",
|
||||
"textures": {
|
||||
"texture": "mmm:blocks/materials/planks/bamboo"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:block/fence_inventory",
|
||||
"textures": {
|
||||
"texture": "mmm:blocks/materials/planks/hevea"
|
||||
}
|
||||
}
|
Reference in a new issue