Name tags, in the second F5 mode, don't appear correctly.
Linked issues
is duplicated by 10
Attachments
Comments 16
Okay, managed to "fix" this, but there is a good chance this isn't the proper/full fix, or can have side-effects.. But at least worlds didn't turn upside down and labels and XP orbs were showing correctly also in the second F5 mode. (and thus I'm quite certain that the XP orb's case is the same bug..)
Fix
RenderManager.cacheActiveRenderInfo(...)
...
if (gameSettings.thirdPersonView == 2) {
this.playerViewY += 180.0F;
this.playerViewX *= -1; // FIX (added this line)
}
...
My limited understanding of the bug is that the render code forgot to flip the vertical angle (for the "camera") and thus the labels and XP orbs were rendered as if the camera's position was mirrored along the horizontal plane.
@@unknown: The latter is MC-46445 (different cause)
(Judging by the capes)