Rubber log works. Need to doublecheck sap side

This commit is contained in:
drcrazy 2019-03-15 15:14:19 +03:00
parent 3cde5c8244
commit bfd6f16504
5 changed files with 57 additions and 57 deletions

View file

@ -1,47 +1,28 @@
{
"forge_marker": 1,
"defaults": {
"textures": {
"particle": "#side",
"north": "#side",
"south": "#side",
"east": "#side",
"west": "#side",
"up": "#end",
"down": "#end",
"end": "techreborn:blocks/rubber_log_top",
"sapside": "techreborn:blocks/rubber_log_sap",
"side": "techreborn:blocks/rubber_log_side"
},
"model": "cube",
"uvlock": true
},
"variants": {
"inventory": [
{
}
],
"hassap": {
"true": {
"textures": {
"north": "#sapside"
}
},
"false": {
}
},
"sapside": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
}
}
}
{
"variants": {
"axis=y,facing=east,hassap=false": { "model": "techreborn:block/rubber_log" },
"axis=z,facing=east,hassap=false": { "model": "techreborn:block/rubber_log", "x": 90 },
"axis=x,facing=east,hassap=false": { "model": "techreborn:block/rubber_log", "x": 90, "y": 90 },
"axis=y,facing=south,hassap=false": { "model": "techreborn:block/rubber_log" },
"axis=z,facing=south,hassap=false": { "model": "techreborn:block/rubber_log", "x": 90 },
"axis=x,facing=south,hassap=false": { "model": "techreborn:block/rubber_log", "x": 90, "y": 90 },
"axis=y,facing=west,hassap=false": { "model": "techreborn:block/rubber_log" },
"axis=z,facing=west,hassap=false": { "model": "techreborn:block/rubber_log", "x": 90 },
"axis=x,facing=west,hassap=false": { "model": "techreborn:block/rubber_log", "x": 90, "y": 90 },
"axis=y,facing=north,hassap=false": { "model": "techreborn:block/rubber_log" },
"axis=z,facing=north,hassap=false": { "model": "techreborn:block/rubber_log", "x": 90 },
"axis=x,facing=north,hassap=false": { "model": "techreborn:block/rubber_log", "x": 90, "y": 90 },
"axis=y,facing=east,hassap=true": { "model": "techreborn:block/rubber_log_with_sap" },
"axis=z,facing=east,hassap=true": { "model": "techreborn:block/rubber_log_with_sap", "x": 90 },
"axis=x,facing=east,hassap=true": { "model": "techreborn:block/rubber_log_with_sap", "x": 90, "y": 90 },
"axis=y,facing=south,hassap=true": { "model": "techreborn:block/rubber_log_with_sap" },
"axis=z,facing=south,hassap=true": { "model": "techreborn:block/rubber_log_with_sap", "x": 90 },
"axis=x,facing=south,hassap=true": { "model": "techreborn:block/rubber_log_with_sap", "x": 90, "y": 90 },
"axis=y,facing=west,hassap=true": { "model": "techreborn:block/rubber_log_with_sap" },
"axis=z,facing=west,hassap=true": { "model": "techreborn:block/rubber_log_with_sap", "x": 90 },
"axis=x,facing=west,hassap=true": { "model": "techreborn:block/rubber_log_with_sap", "x": 90, "y": 90 },
"axis=y,facing=north,hassap=true": { "model": "techreborn:block/rubber_log_with_sap" },
"axis=z,facing=north,hassap=true": { "model": "techreborn:block/rubber_log_with_sap", "x": 90 },
"axis=x,facing=north,hassap=true": { "model": "techreborn:block/rubber_log_with_sap", "x": 90, "y": 90 }
}
}

View file

@ -0,0 +1,7 @@
{
"parent": "minecraft:block/cube_column",
"textures": {
"end": "techreborn:block/rubber_log_top",
"side": "techreborn:block/rubber_log_side"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/orientable",
"textures": {
"top": "techreborn:block/rubber_log_top",
"front": "techreborn:block/rubber_log_sap",
"side": "techreborn:block/rubber_log_side"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "techreborn:block/rubber_log"
}