<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 12:07:47 UTC 2025

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Mojang Studios Jira</title>
    <link>https://bugs.mojang.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en</language>    <build-info>
        <version>9.12.2</version>
        <build-number>9120002</build-number>
        <build-date>10-01-2024</build-date>
    </build-info>


<item>
            <title>[MC-5404] Name Tags/XP Orbs/Splash Potions are angled in third-person mode</title>
                <link>https://bugs.mojang.com/browse/MC-5404</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;p&gt;Name tags, in the second F5 mode, don&apos;t appear correctly.&lt;/p&gt;</description>
                <environment></environment>
        <key id="18007">MC-5404</key>
            <summary>Name Tags/XP Orbs/Splash Potions are angled in third-person mode</summary>
                <type id="1" iconUrl="https://bugs.mojang.com/secure/viewavatar?size=xsmall&amp;avatarId=18903&amp;avatarType=issuetype">Bug</type>
                                    <status id="5" iconUrl="https://bugs.mojang.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="grum">[Mojang] Grum (Erik Broes)</assignee>
                                    <reporter username="malfuncti0n">Farhan Qalbain</reporter>
                        <labels>
                    </labels>
                <created>Thu, 27 Dec 2012 04:17:56 +0100</created>
                <updated>Tue, 21 Jul 2015 16:28:03 +0200</updated>
                            <resolved>Tue, 21 Jul 2015 16:15:27 +0200</resolved>
                                    <version>Minecraft 1.4.6</version>
                    <version>Minecraft 1.4.7</version>
                    <version>Minecraft 1.5</version>
                    <version>Snapshot 13w11a</version>
                    <version>Minecraft 1.7.4</version>
                    <version>Minecraft 14w05b</version>
                    <version>Minecraft 14w06b</version>
                    <version>Minecraft 14w07a</version>
                    <version>Minecraft 1.8</version>
                    <version>Minecraft 1.8.1</version>
                    <version>Minecraft 1.8.2</version>
                                    <fixVersion>Minecraft 15w31a</fixVersion>
                                                        <votes>7</votes>
                                    <watches>6</watches>
                                                                            <comments>
                            <comment id="219591" author="conormcs" created="Fri, 20 Feb 2015 11:17:25 +0100"  >&lt;p&gt;Confirmed for 1.8.2&lt;/p&gt;</comment>
                            <comment id="213631" author="kumasasa" created="Thu, 25 Dec 2014 11:47:49 +0100"  >&lt;p&gt;@&lt;a href=&quot;https://bugs.mojang.com/secure/ViewProfile.jspa?name=ericz1&quot; class=&quot;user-hover&quot; rel=&quot;ericz1&quot;&gt;ericz1&lt;/a&gt;: The latter is &lt;a href=&quot;https://bugs.mojang.com/browse/MC-46445&quot; title=&quot;Spectator mode particles and sounds computed from where you have been before&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-46445&quot;&gt;&lt;del&gt;MC-46445&lt;/del&gt;&lt;/a&gt; (different cause)&lt;/p&gt;</comment>
                            <comment id="200953" author="ericz1" created="Sun, 21 Sep 2014 06:08:59 +0200"  >&lt;p&gt;Confirmed for 1.8. Particles are also affected while in mob camera view.&lt;/p&gt;</comment>
                            <comment id="125607" author="dlminecr" created="Tue, 17 Dec 2013 05:45:45 +0100"  >&lt;p&gt;Still happens in 1.7.4&lt;/p&gt;</comment>
                            <comment id="38918" author="bugi74" created="Mon, 21 Jan 2013 19:25:50 +0100"  >&lt;p&gt;Okay, managed to &quot;fix&quot; this, but there is a good chance this isn&apos;t the proper/full fix, or can have side-effects.. But at least worlds didn&apos;t turn upside down and labels &lt;em&gt;and&lt;/em&gt; XP orbs were showing correctly also in the second F5 mode. (and thus I&apos;m quite certain that the XP orb&apos;s case is the same bug..)&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Fix&lt;/b&gt;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;&quot;&gt;&lt;b&gt;RenderManager.cacheActiveRenderInfo(...)&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;    ...
    &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (gameSettings.thirdPersonView == 2) {
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.playerViewY += 180.0F;
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.playerViewX *= -1; &lt;span class=&quot;code-comment&quot;&gt;// FIX (added &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt; line)
&lt;/span&gt;    }
    ...
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;My limited understanding of the bug is that the render code forgot to flip the vertical angle (for the &quot;camera&quot;) and thus the labels and XP orbs were rendered as if the camera&apos;s position was mirrored along the horizontal plane.&lt;/p&gt;</comment>
                            <comment id="38902" author="bugi74" created="Mon, 21 Jan 2013 18:37:02 +0100"  >&lt;p&gt;Btw. I can reproduce this with the 2nd F5 mode in singleplayer, too, when giving a bit of knife to enable mob ids (i.e. labels). That is with semi-vanilla 1.4.7 (&apos;semi&apos; referring to it including plenty of the bugfixes i have been providing, but nothing that would touch the label rendering other than turning them on with F3).&lt;/p&gt;</comment>
                            <comment id="38895" author="banana478" created="Mon, 21 Jan 2013 18:28:59 +0100"  >&lt;p&gt;Thank you, reopened.&lt;/p&gt;</comment>
                            <comment id="38892" author="ezekielelin" created="Mon, 21 Jan 2013 18:14:19 +0100"  >&lt;p&gt;I will make a video if you guys aren&apos;t convinced. Try it your selves, you lazy people.&lt;/p&gt;</comment>
                            <comment id="38891" author="bugi74" created="Mon, 21 Jan 2013 18:13:20 +0100"  >&lt;p&gt;Difficult to say without seeing it change, but seems that it calculates the angle amount correctly, but flips it (i.e. sign of vertical angle is negated).&lt;/p&gt;</comment>
                            <comment id="38889" author="ezekielelin" created="Mon, 21 Jan 2013 18:09:55 +0100"  >&lt;p&gt;These are taken from a LAN server. One of these proves its &quot;LAN, Vanilla&quot;&lt;/p&gt;</comment>
                            <comment id="38888" author="ezekielelin" created="Mon, 21 Jan 2013 18:06:50 +0100"  >&lt;p&gt;I reproduced this you need to be in the second F5 mode. Screenshots coming&lt;/p&gt;</comment>
                            <comment id="38884" author="banana478" created="Mon, 21 Jan 2013 17:58:40 +0100"  >&lt;p&gt;I&apos;ll reopen it if they can prove that it is vanilla. I see colored signs. &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/smile.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="38882" author="ezekielelin" created="Mon, 21 Jan 2013 17:49:24 +0100"  >&lt;p&gt;Someone tried that today. @Tails already marked it as a duplicate of this.&lt;/p&gt;</comment>
                            <comment id="38881" author="banana478" created="Mon, 21 Jan 2013 17:46:49 +0100"  >&lt;p&gt;Make a new issue!&lt;/p&gt;</comment>
                            <comment id="38880" author="ezekielelin" created="Mon, 21 Jan 2013 17:46:06 +0100"  >&lt;p&gt;This needs to be reopened. Its a valid vanilla issue.&lt;/p&gt;</comment>
                            <comment id="38866" author="banana478" created="Mon, 21 Jan 2013 17:22:49 +0100"  >&lt;p&gt;(Judging by the capes)&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="19428">MC-6660</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="20921">MC-8053</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="21435">MC-8498</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="40323">MC-21354</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="52092">MC-30930</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="88163">MC-60886</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="106509">MC-77783</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="107186">MC-78340</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="111676">MC-81358</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="14603">MC-2820</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="16090" name="2012-12-27_10.09.46.png" size="482170" author="malfuncti0n" created="Thu, 27 Dec 2012 04:17:56 +0100"/>
                            <attachment id="16091" name="2012-12-27_10.09.49.png" size="396280" author="malfuncti0n" created="Thu, 27 Dec 2012 04:17:56 +0100"/>
                            <attachment id="16092" name="2012-12-27_10.09.56.png" size="325878" author="malfuncti0n" created="Thu, 27 Dec 2012 04:17:56 +0100"/>
                            <attachment id="16093" name="2012-12-27_10.09.58.png" size="155630" author="malfuncti0n" created="Thu, 27 Dec 2012 04:17:56 +0100"/>
                            <attachment id="19332" name="2013-01-21_12.08.07.png" size="70572" author="ezekielelin" created="Mon, 21 Jan 2013 18:09:55 +0100"/>
                            <attachment id="19334" name="2013-01-21_12.08.11.png" size="45060" author="ezekielelin" created="Mon, 21 Jan 2013 18:09:55 +0100"/>
                            <attachment id="19335" name="2013-01-21_12.08.14.png" size="40197" author="ezekielelin" created="Mon, 21 Jan 2013 18:09:55 +0100"/>
                            <attachment id="19333" name="2013-01-21_12.08.35.png" size="58478" author="ezekielelin" created="Mon, 21 Jan 2013 18:09:55 +0100"/>
                            <attachment id="87400" name="Splash potion angle (1.8.2-pre1).png" size="950299" author="marcono1234" created="Fri, 9 Jan 2015 15:43:48 +0100"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 23 Jan 2013 21:36:00 +0100</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10500" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Confirmation Status</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10303"><![CDATA[Confirmed]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_11700" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_11100" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Linked</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_11600" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i0g86n:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    </customfields>
    </item>
</channel>
</rss>