mojira.dev
MC-109370

Bottom face of column blocks are rotated 180 degrees

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

Attachments

Comments 8

Sides of the pillar blocks are rotated wrongly as well. Light should come from left top corner.

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.

I guess we need separate JSON files for each position of column to make it work perfect.

Affects 18w50a, relates to MC-138566. Can I request ownership of this ticket?

Changed the reporter to @unknown.

Samuel Lembas

muzikbike

Felix Jones

Confirmed

Textures and models

block, pillar, rotated, sideways

Minecraft 1.10.2, Minecraft 16w43a, Minecraft 16w44a, Minecraft 1.11 Pre-Release 1, Minecraft 1.11, ..., 1.15 Pre-release 6, 1.15 Pre-release 7, 1.15.1 Pre-release 1, 1.15.2 Pre-Release 1, 1.15.2 Pre-release 2

20w06a

Retrieved