Examples of TileMolecularAssembler


Examples of appeng.tile.crafting.TileMolecularAssembler

  }

  @Override
  public boolean onActivated(World w, int x, int y, int z, EntityPlayer p, int side, float hitX, float hitY, float hitZ)
  {
    TileMolecularAssembler tg = getTileEntity( w, x, y, z );
    if ( tg != null && !p.isSneaking() )
    {
      Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_MAC );
      return true;
    }
View Full Code Here

Examples of appeng.tile.crafting.TileMolecularAssembler

  @Override
  public boolean renderInWorld(AEBaseBlock block, IBlockAccess world, int x, int y, int z, RenderBlocks renderer)
  {
    BlockMolecularAssembler blk = (BlockMolecularAssembler) block;
    TileMolecularAssembler tma = blk.getTileEntity( world, x, y, z );

    if ( BlockMolecularAssembler.booleanAlphaPass )
    {
      if ( tma.isPowered() )
      {
        renderBlockBounds( renderer, 1, 1, 1, 15, 15, 15, ForgeDirection.WEST, ForgeDirection.UP, ForgeDirection.SOUTH );
        TaughtIcon lights = new TaughtIcon( ExtraBlockTextures.BlockMolecularAssemblerLights.getIcon(), -2.0f );
        Tessellator.instance.setColorRGBA_F( 1, 1, 1, 0.3f );
        Tessellator.instance.setBrightness( 14 << 20 | 14 << 4 );
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.