Package net.minecraft.block.material

Examples of net.minecraft.block.material.MaterialLiquid


public class BlockPaint extends AEBaseBlock
{

  public BlockPaint() {
    super( BlockPaint.class, new MaterialLiquid( MapColor.airColor ) );
    setFeature( EnumSet.of( AEFeature.PaintBalls ) );
    setTileEntity( TilePaint.class );
    setLightOpacity( 0 );
    isFullSize = false;
    isOpaque = false;
View Full Code Here


        TinkerSmeltery.castingChannel = (new CastingChannelBlock()).setBlockName("CastingChannel");

        TinkerSmeltery.tankAir = new TankAirBlock(Material.leaves).setBlockUnbreakable().setBlockName("tconstruct.tank.air");

        // Liquids
        TinkerSmeltery.liquidMetal = new MaterialLiquid(MapColor.tntColor);

        TinkerSmeltery.moltenIronFluid = new Fluid("iron.molten").setLuminosity(12).setDensity(3000).setViscosity(6000).setTemperature(1300);
        boolean isIronPreReg = !FluidRegistry.registerFluid(TinkerSmeltery.moltenIronFluid);
        TinkerSmeltery.moltenIron = new TConstructFluid(TinkerSmeltery.moltenIronFluid, Material.lava, "liquid_iron").setBlockName("fluid.molten.iron");
        GameRegistry.registerBlock(TinkerSmeltery.moltenIron, "fluid.molten.iron");
View Full Code Here

TOP

Related Classes of net.minecraft.block.material.MaterialLiquid

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.