Package vazkii.botania.common.block.tile

Examples of vazkii.botania.common.block.tile.TileSpawnerClaw


  @Override
  public void renderInventoryBlock(Block block, int metadata, int modelId, RenderBlocks renderer) {
    GL11.glPushMatrix();
    GL11.glTranslatef(-0.5F, 0F, -0.5F);
    TileEntityRendererDispatcher.instance.renderTileEntityAt(new TileSpawnerClaw(), 0.0D, 0.0D, 0.0D, 0.0F);
    GL11.glPopMatrix();
  }
View Full Code Here


    return LibRenderIDs.idSpawnerClaw;
  }

  @Override
  public TileEntity createNewTileEntity(World world, int meta) {
    return new TileSpawnerClaw();
  }
View Full Code Here

TOP

Related Classes of vazkii.botania.common.block.tile.TileSpawnerClaw

Copyright © 2018 www.massapicom. 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.