Package mekanism.client.render.MekanismRenderer

Examples of mekanism.client.render.MekanismRenderer.Model3D


      case 2:
        icon = Blocks.redstone_torch.getIcon(0, 0);
        break;
    }

    Model3D toReturn = new Model3D();
    toReturn.baseBlock = Blocks.stone;
    toReturn.setTexture(icon);

    DisplayInteger display = DisplayInteger.createAndStart();

    if(cachedOverlays.containsKey(side))
    {
View Full Code Here


    if(cachedGasses.containsKey(side) && cachedGasses.get(side).containsKey(gas))
    {
      return cachedGasses.get(side).get(gas);
    }

    Model3D toReturn = new Model3D();
    toReturn.baseBlock = Blocks.water;
    toReturn.setTexture(gas.getIcon());

    DisplayInteger display = DisplayInteger.createAndStart();

    if(cachedGasses.containsKey(side))
    {
View Full Code Here

TOP

Related Classes of mekanism.client.render.MekanismRenderer.Model3D

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.