Package pneumaticCraft.common.tileentity

Examples of pneumaticCraft.common.tileentity.TileEntityAssemblyLaser


    }

    @Override
    public void renderDynamic(float size, TileEntity te, float partialTicks){
        if(te instanceof TileEntityAssemblyLaser) {
            TileEntityAssemblyLaser tile = (TileEntityAssemblyLaser)te;
            float[] renderAngles = new float[5];
            for(int i = 0; i < 5; i++) {
                renderAngles[i] = tile.oldAngles[i] + (tile.angles[i] - tile.oldAngles[i]) * partialTicks;
            }
            renderModel(0.0625F, renderAngles, tile.isLaserOn);
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.tileentity.TileEntityAssemblyLaser

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.