The bug
As you can see on the screenshots, all sideways block textures that face west and south are the only rotated properly. Maybe not a visible issue, but it is really noticeable on purpur pillar, as the lines dont match up with regular purpur with incorrect rotations.
Best reproduced by creating a full cube of purpur with pillars in the very center, to see which directions the bottom of the pillar doesnt match up with.
Linked issues
relates to 1
Attachments
Comments 8
Sides are intended, for the fix of MC-1451, as for the "bottom" face, it seems to be mirrored rotated 180 degrees.
Renaming issue to "Bottom face of column blocks are rotated 180 degrees".
That may be intended, because the north part will face north on both the top and bottom.
Edit: sorry, rotated, not mirrored
If sides are intended, I made a fix. In cube_column.json I made this:
{
"parent": "block/cube",
"textures": {
"particle": "#side",
"down": "#end",
"up": "#end",
"north": "#side",
"east": "#side",
"south": "#side",
"west": "#side"
},
"elements": [
{ "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ],
"faces": {
"down": { "texture": "#end", "cullface": "down" },
"up": { "rotation": 180, "texture": "#end", "cullface": "up" },
"north": { "texture": "#side", "cullface": "north" },
"south": { "texture": "#side", "cullface": "south" },
"west": { "texture": "#side", "cullface": "west" },
"east": { "texture": "#side", "cullface": "east" }
}
}
]
}
Without a symmetric texture you will never be able to get "matching" bottom textures for all 6 sides. I suspect this is WAI.
Affects 18w50a, relates to MC-138566. Can I request ownership of this ticket?
Relates to MC-117879
Sides of the pillar blocks are rotated wrongly as well. Light should come from left top corner.