Package logisticspipes.renderer.CustomBlockRenderer

Examples of logisticspipes.renderer.CustomBlockRenderer.RenderInfo


    if(displayFluidLists.containsKey(liquidId)) { return displayFluidLists.get(liquidId); }
   
    DisplayFluidList d = new DisplayFluidList();
    displayFluidLists.put(liquidId, d);
   
    RenderInfo block = new RenderInfo();
   
    Fluid fluid = FluidRegistry.getFluid(liquidId);
    block.baseBlock = fluid.getBlock();
    block.texture = fluid.getStillIcon();
   
View Full Code Here

TOP

Related Classes of logisticspipes.renderer.CustomBlockRenderer.RenderInfo

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.