Examples of OreQuartz


Examples of appeng.block.solids.OreQuartz

  }

  @Override
  public boolean renderInWorld(AEBaseBlock block, IBlockAccess world, int x, int y, int z, RenderBlocks renderer)
  {
    OreQuartz blk = (OreQuartz) block;
    blk.enhanceBrightness = true;
    super.renderInWorld( block, world, x, y, z, renderer );
    blk.enhanceBrightness = false;

    blk.getRendererInstance().setTemporaryRenderIcon( ExtraBlockTextures.OreQuartzStone.getIcon() );
    boolean out = super.renderInWorld( block, world, x, y, z, renderer );
    blk.getRendererInstance().setTemporaryRenderIcon( null );

    return out;
  }
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.