<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Mise à jour 1.7.10 vers 1.8.8]]></title><description><![CDATA[<pre><code class="java">
public void drawBack()
{
this.mc.getTextureManager().bindTexture(backgroundImage);
Tessellator tessellator = Tessellator.getInstance();
WorldRenderer wr = tessellator.getWorldRenderer();
wr.startDrawingQuads();
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_LINEAR);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_LINEAR);
wr.setTextureUV(1.0F, 1.0F);
{
wr.addVertexWithUV(0, 0, this.zLevel, 0, 0);
wr.addVertexWithUV(0, this.height, this.zLevel, 0, 1);
wr.addVertexWithUV(this.width, this.height, this.zLevel, 1, 1);
wr.addVertexWithUV(this.width, 0, this.zLevel, 1, 0);
wr.draw();
}
}

</code></pre>
]]></description><link>https://www.minecraftforgefrance.fr/topic/4771/mise-à-jour-1-7-10-vers-1-8-8</link><generator>RSS for Node</generator><lastBuildDate>Tue, 11 Aug 2026 05:02:34 GMT</lastBuildDate><atom:link href="https://www.minecraftforgefrance.fr/topic/4771.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 03 Jan 2018 10:18:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Mise à jour 1.7.10 vers 1.8.8 on Thu, 04 Jan 2018 20:09:28 GMT]]></title><description><![CDATA[<p dir="auto">Elle a surement un autre nom en 1.8 (c’est du code 1.12 que j’ai envoyé), j’avais oublié que ça avait été encore renommé.</p>
<p dir="auto">Visiblement c’était WorldRenderer en 1.8 :<br />
WorldRenderer worldrenderer = tess.getWorldRenderer();<br />
(tout les autres bufferbuilder doivent être des worldrenderer)</p>
]]></description><link>https://www.minecraftforgefrance.fr/post/59525</link><guid isPermaLink="true">https://www.minecraftforgefrance.fr/post/59525</guid><dc:creator><![CDATA[robin4002]]></dc:creator><pubDate>Thu, 04 Jan 2018 20:09:28 GMT</pubDate></item><item><title><![CDATA[Reply to Mise à jour 1.7.10 vers 1.8.8 on Thu, 04 Jan 2018 19:07:28 GMT]]></title><description><![CDATA[<p dir="auto">@‘robin4002’:</p>
<blockquote>
<p dir="auto">Il faut remplacer par quelque chose comme ça :</p>
<pre><code class="java">       Tessellator tessellator = Tessellator.getInstance();
       BufferBuilder bufferbuilder = tessellator.getBuffer();
       bufferbuilder.begin(7, DefaultVertexFormats.POSITION_TEX);
       bufferbuilder.pos(0, 0, this.zLevel).tex(0, 0).endVertex();
       bufferbuilder.pos(0, this.height, this.zLevel).tex(0, 1).endVertex();
       bufferbuilder.pos(this.width, this.height, this.zLevel).tex(1, 1).endVertex();
       bufferbuilder.pos((this.width, 0, this.zLevel).tex(1, 0).endVertex();
       tessellator.draw();
</code></pre>
<p dir="auto">bufferbuilder.pos(x, y, z).tex(u, v).endVertex(); remplace wr.addVertexWithUV(x, y, z, u, v);</p>
</blockquote>
<p dir="auto">Je ne trouve pas la class <span style="color:#000000">[size=small</span>BufferBuilder]<span style="color:#000000">[size=small</span> ]</p>
]]></description><link>https://www.minecraftforgefrance.fr/post/59523</link><guid isPermaLink="true">https://www.minecraftforgefrance.fr/post/59523</guid><dc:creator><![CDATA[SanXyS]]></dc:creator><pubDate>Thu, 04 Jan 2018 19:07:28 GMT</pubDate></item><item><title><![CDATA[Reply to Mise à jour 1.7.10 vers 1.8.8 on Thu, 04 Jan 2018 09:05:11 GMT]]></title><description><![CDATA[<p dir="auto">Il faut remplacer par quelque chose comme ça :</p>
<pre><code class="java">       Tessellator tessellator = Tessellator.getInstance();
       BufferBuilder bufferbuilder = tessellator.getBuffer();
       bufferbuilder.begin(7, DefaultVertexFormats.POSITION_TEX);
       bufferbuilder.pos(0, 0, this.zLevel).tex(0, 0).endVertex();
       bufferbuilder.pos(0, this.height, this.zLevel).tex(0, 1).endVertex();
       bufferbuilder.pos(this.width, this.height, this.zLevel).tex(1, 1).endVertex();
       bufferbuilder.pos((this.width, 0, this.zLevel).tex(1, 0).endVertex();
       tessellator.draw();
</code></pre>
<p dir="auto">bufferbuilder.pos(x, y, z).tex(u, v).endVertex(); remplace wr.addVertexWithUV(x, y, z, u, v);</p>
]]></description><link>https://www.minecraftforgefrance.fr/post/59511</link><guid isPermaLink="true">https://www.minecraftforgefrance.fr/post/59511</guid><dc:creator><![CDATA[robin4002]]></dc:creator><pubDate>Thu, 04 Jan 2018 09:05:11 GMT</pubDate></item><item><title><![CDATA[Reply to Mise à jour 1.7.10 vers 1.8.8 on Wed, 03 Jan 2018 21:36:18 GMT]]></title><description><![CDATA[<p dir="auto">Ce serait mieux si tu nous disais les erreurs que tu as.</p>
]]></description><link>https://www.minecraftforgefrance.fr/post/59507</link><guid isPermaLink="true">https://www.minecraftforgefrance.fr/post/59507</guid><dc:creator><![CDATA[Superloup10]]></dc:creator><pubDate>Wed, 03 Jan 2018 21:36:18 GMT</pubDate></item><item><title><![CDATA[Reply to Mise à jour 1.7.10 vers 1.8.8 on Wed, 03 Jan 2018 21:18:50 GMT]]></title><description><![CDATA[<p dir="auto">@‘robin4002’:</p>
<blockquote>
<p dir="auto">Bonjour, quel est le problème, au revoir ?</p>
</blockquote>
<p dir="auto">Escusez moi, mais j’ai du avoir un petit bug quand j’ai mis le poste… Je voudrais savoir comment rendre ce code compatible en 1.8.8</p>
]]></description><link>https://www.minecraftforgefrance.fr/post/59506</link><guid isPermaLink="true">https://www.minecraftforgefrance.fr/post/59506</guid><dc:creator><![CDATA[SanXyS]]></dc:creator><pubDate>Wed, 03 Jan 2018 21:18:50 GMT</pubDate></item><item><title><![CDATA[Reply to Mise à jour 1.7.10 vers 1.8.8 on Wed, 03 Jan 2018 14:37:03 GMT]]></title><description><![CDATA[<p dir="auto">Bonjour, quel est le problème, au revoir ?</p>
]]></description><link>https://www.minecraftforgefrance.fr/post/59498</link><guid isPermaLink="true">https://www.minecraftforgefrance.fr/post/59498</guid><dc:creator><![CDATA[robin4002]]></dc:creator><pubDate>Wed, 03 Jan 2018 14:37:03 GMT</pubDate></item><item><title><![CDATA[Reply to Mise à jour 1.7.10 vers 1.8.8 on Wed, 03 Jan 2018 14:26:53 GMT]]></title><description><![CDATA[<p dir="auto">Oui et donc ?</p>
]]></description><link>https://www.minecraftforgefrance.fr/post/59496</link><guid isPermaLink="true">https://www.minecraftforgefrance.fr/post/59496</guid><dc:creator><![CDATA[Superloup10]]></dc:creator><pubDate>Wed, 03 Jan 2018 14:26:53 GMT</pubDate></item></channel></rss>