Package pneumaticCraft.common.tileentity

Examples of pneumaticCraft.common.tileentity.TileEntityVacuumPump


    @Override
    public void renderDynamic(float size, TileEntity te, float partialTicks){
        if(te instanceof TileEntityVacuumPump) {
            GL11.glRotated(-90, 0, 1, 0);
            TileEntityVacuumPump tile = (TileEntityVacuumPump)te;
            renderModel(size, tile.oldRotation + (tile.rotation - tile.oldRotation) * partialTicks);
        } else {
            renderModel(size, 0);
        }
    }
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.tileentity.TileEntityVacuumPump

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.