Examples of TileAbstractBuilder


Examples of buildcraft.core.builders.TileAbstractBuilder

  @Override
  public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) {
    super.renderTileEntityAt(tileentity, x, y, z, f);

    TileAbstractBuilder builder = (TileAbstractBuilder) tileentity;

    if (builder != null) {
      GL11.glPushMatrix();
      GL11.glPushAttrib(GL11.GL_ENABLE_BIT);
      GL11.glEnable(GL11.GL_CULL_FACE);
      GL11.glEnable(GL11.GL_LIGHTING);
      GL11.glEnable(GL11.GL_BLEND);
      GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);

      GL11.glTranslated(x, y, z);
      GL11.glTranslated(-tileentity.xCoord, -tileentity.yCoord, -tileentity.zCoord);

      if (builder.getPathLaser() != null) {
        for (LaserData laser : builder.getPathLaser()) {
          if (laser != null) {
            GL11.glPushMatrix();
            RenderLaser
                .doRenderLaser(
                    TileEntityRendererDispatcher.instance.field_147553_e,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.