Lotus generation

This commit is contained in:
paulevsGitch 2020-10-20 21:26:33 +03:00
parent d3c279bf53
commit cac7be60b1
18 changed files with 469 additions and 11 deletions

View file

@ -0,0 +1,18 @@
{
"variants": {
"facing=north,shape=bottom": { "model": "betterend:block/end_lotus_leaf_center" },
"facing=south,shape=bottom": { "model": "betterend:block/end_lotus_leaf_center" },
"facing=east,shape=bottom": { "model": "betterend:block/end_lotus_leaf_center" },
"facing=west,shape=bottom": { "model": "betterend:block/end_lotus_leaf_center" },
"facing=north,shape=middle": { "model": "betterend:block/end_lotus_leaf_side" },
"facing=south,shape=middle": { "model": "betterend:block/end_lotus_leaf_side", "y": 180 },
"facing=east,shape=middle": { "model": "betterend:block/end_lotus_leaf_side", "y": 90 },
"facing=west,shape=middle": { "model": "betterend:block/end_lotus_leaf_side", "y": 270 },
"facing=north,shape=top": { "model": "betterend:block/end_lotus_leaf_corner" },
"facing=south,shape=top": { "model": "betterend:block/end_lotus_leaf_corner", "y": 180 },
"facing=east,shape=top": { "model": "betterend:block/end_lotus_leaf_corner", "y": 90 },
"facing=west,shape=top": { "model": "betterend:block/end_lotus_leaf_corner", "y": 270 }
}
}

View file

@ -1,7 +1,46 @@
{
"variants": {
"shape=top": { "model": "betterend:block/end_lotus_stem_top" },
"shape=middle": { "model": "betterend:block/end_lotus_stem" },
"shape=bottom": { "model": "betterend:block/end_lotus_roots" }
"leaf=false,shape=top,facing=north": { "model": "betterend:block/end_lotus_stem_top" },
"leaf=false,shape=top,facing=south": { "model": "betterend:block/end_lotus_stem_top" },
"leaf=false,shape=top,facing=east": { "model": "betterend:block/end_lotus_stem_top" },
"leaf=false,shape=top,facing=west": { "model": "betterend:block/end_lotus_stem_top" },
"leaf=false,shape=top,facing=up": { "model": "betterend:block/end_lotus_stem_top" },
"leaf=false,shape=top,facing=down": { "model": "betterend:block/end_lotus_stem_top" },
"leaf=false,shape=bottom,facing=north": { "model": "betterend:block/end_lotus_roots" },
"leaf=false,shape=bottom,facing=south": { "model": "betterend:block/end_lotus_roots" },
"leaf=false,shape=bottom,facing=east": { "model": "betterend:block/end_lotus_roots" },
"leaf=false,shape=bottom,facing=west": { "model": "betterend:block/end_lotus_roots" },
"leaf=false,shape=bottom,facing=up": { "model": "betterend:block/end_lotus_roots" },
"leaf=false,shape=bottom,facing=down": { "model": "betterend:block/end_lotus_roots" },
"leaf=false,shape=middle,facing=north": { "model": "betterend:block/end_lotus_stem", "x": 90 },
"leaf=false,shape=middle,facing=south": { "model": "betterend:block/end_lotus_stem", "z": 90 },
"leaf=false,shape=middle,facing=east": { "model": "betterend:block/end_lotus_stem", "x": 90 },
"leaf=false,shape=middle,facing=west": { "model": "betterend:block/end_lotus_stem", "z": 90 },
"leaf=false,shape=middle,facing=up": { "model": "betterend:block/end_lotus_stem" },
"leaf=false,shape=middle,facing=down": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=middle,facing=north": { "model": "betterend:block/end_lotus_stem_leaf", "y": 180 },
"leaf=true,shape=middle,facing=south": { "model": "betterend:block/end_lotus_stem_leaf" },
"leaf=true,shape=middle,facing=east": { "model": "betterend:block/end_lotus_stem_leaf", "y": 270 },
"leaf=true,shape=middle,facing=west": { "model": "betterend:block/end_lotus_stem_leaf", "y": 90 },
"leaf=true,shape=middle,facing=up": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=middle,facing=down": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=top,facing=north": { "model": "betterend:block/end_lotus_stem_top_leaf", "y": 180 },
"leaf=true,shape=top,facing=east": { "model": "betterend:block/end_lotus_stem_top_leaf", "y": 270 },
"leaf=true,shape=top,facing=south": { "model": "betterend:block/end_lotus_stem_top_leaf" },
"leaf=true,shape=top,facing=west": { "model": "betterend:block/end_lotus_stem_top_leaf", "y": 90 },
"leaf=true,shape=top,facing=up": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=top,facing=down": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=bottom,facing=north": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=bottom,facing=east": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=bottom,facing=south": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=bottom,facing=west": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=bottom,facing=up": { "model": "betterend:block/end_lotus_stem" },
"leaf=true,shape=bottom,facing=down": { "model": "betterend:block/end_lotus_stem" }
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/plane_bottom",
"textures": {
"texture": "betterend:block/end_lotus_leaf_center"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/plane_bottom",
"textures": {
"texture": "betterend:block/end_lotus_leaf_corner"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/plane_bottom",
"textures": {
"texture": "betterend:block/end_lotus_leaf_side"
}
}

View file

@ -0,0 +1,34 @@
{
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
"parent": "block/block",
"textures": {
"particle": "betterend:block/end_lotus_stem",
"texture": "betterend:block/end_lotus_stem",
"texture1": "betterend:block/end_lotus_leaf_cutout"
},
"elements": [
{
"__comment": "Box1",
"from": [ 6, 0, 6 ],
"to": [ 10, 16, 10 ],
"faces": {
"down": { "uv": [ 4, 0, 8, 4 ], "texture": "#texture", "cullface": "down" },
"up": { "uv": [ 4, 0, 8, 4 ], "texture": "#texture", "cullface": "up" },
"north": { "uv": [ 0, 0, 4, 16 ], "texture": "#texture" },
"south": { "uv": [ 0, 0, 4, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 0, 4, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 0, 4, 16 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneY2",
"from": [ 0, 0, 0 ],
"to": [ 16, 0.001, 16 ],
"shade": false,
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }
}
}
]
}

View file

@ -0,0 +1,45 @@
{
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
"parent": "block/block",
"textures": {
"particle": "betterend:block/end_lotus_stem",
"texture": "betterend:block/end_lotus_stem",
"leaf": "betterend:block/end_lotus_leaf_cutout"
},
"elements": [
{
"__comment": "Box1",
"from": [ 6, 0, 6 ],
"to": [ 10, 12, 10 ],
"faces": {
"down": { "uv": [ 4, 0, 8, 4 ], "texture": "#texture", "cullface": "down" },
"north": { "uv": [ 0, 4, 4, 16 ], "texture": "#texture" },
"south": { "uv": [ 0, 4, 4, 16 ], "texture": "#texture" },
"west": { "uv": [ 0, 4, 4, 16 ], "texture": "#texture" },
"east": { "uv": [ 0, 4, 4, 16 ], "texture": "#texture" }
}
},
{
"__comment": "Box2",
"from": [ 5, 12, 5 ],
"to": [ 11, 16, 11 ],
"faces": {
"down": { "uv": [ 4, 8, 10, 14 ], "texture": "#texture" },
"up": { "uv": [ 4, 8, 10, 14 ], "texture": "#texture", "cullface": "up" },
"north": { "uv": [ 4, 4, 10, 8 ], "texture": "#texture" },
"south": { "uv": [ 4, 4, 10, 8 ], "texture": "#texture" },
"west": { "uv": [ 4, 4, 10, 8 ], "texture": "#texture" },
"east": { "uv": [ 4, 4, 10, 8 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneY3",
"from": [ 0, 0, 0 ],
"to": [ 16, 0.001, 16 ],
"faces": {
"down": { "uv": [ 0, 16, 16, 0 ], "texture": "#leaf" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#leaf" }
}
}
]
}

View file

@ -0,0 +1,17 @@
{
"textures": {
"particle": "#texture"
},
"elements": [
{
"__comment": "PlaneY1",
"from": [ 0, 0, 0 ],
"to": [ 16, 0.001, 16 ],
"shade": false,
"faces": {
"down": { "uv": [ 0, 16, 16, 0 ], "texture": "#texture" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
}
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB