fix: particles

This commit is contained in:
Timo Ley 2022-12-10 22:04:25 +01:00
parent d945898e31
commit 4c1b25736b
3 changed files with 3 additions and 4 deletions

View file

@ -180,6 +180,6 @@ public class FXBeam extends EntityFX {
GL11.glPopMatrix(); GL11.glPopMatrix();
tessellator.startDrawingQuads(); tessellator.startDrawingQuads();
this.prevSize = size; this.prevSize = size;
Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("particles")); Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("textures/particle/particles.png"));
} }
} }

View file

@ -88,6 +88,6 @@ public class FXHologram extends EntityFX {
CalclaviaRenderHelper.disableBlending(); CalclaviaRenderHelper.disableBlending();
GL11.glPopMatrix(); GL11.glPopMatrix();
tessellator.startDrawingQuads(); tessellator.startDrawingQuads();
Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("particles")); Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("textures/particle/particles.png"));
} }
} }

View file

@ -73,7 +73,6 @@ public class FXHologramMoving extends EntityFX {
CalclaviaRenderHelper.enableLighting(); CalclaviaRenderHelper.enableLighting();
GL11.glPopMatrix(); GL11.glPopMatrix();
tessellator.startDrawingQuads(); tessellator.startDrawingQuads();
Minecraft.getMinecraft().renderEngine.bindTexture( Minecraft.getMinecraft().renderEngine.bindTexture(new ResourceLocation("textures/particle/particles.png"));
new ResourceLocation("particles"));
} }
} }