Package mekanism.client.render

Examples of mekanism.client.render.ModelCustomArmor$GlowArmor


  @Override
  @SideOnly(Side.CLIENT)
  public ModelBiped getArmorModel(EntityLivingBase entityLiving, ItemStack itemStack, int armorSlot)
  {
    ModelCustomArmor model = ModelCustomArmor.INSTANCE;

    if(this == Mekanism.Jetpack)
    {
      model.modelType = ArmorModel.JETPACK;
    }
View Full Code Here


  @Override
  @SideOnly(Side.CLIENT)
  public ModelBiped getArmorModel(EntityLivingBase entityLiving, ItemStack itemStack, int armorSlot)
  {
    ModelCustomArmor model = ModelCustomArmor.INSTANCE;
    model.modelType = ArmorModel.FREERUNNERS;
    return model;
  }
View Full Code Here

  @Override
  @SideOnly(Side.CLIENT)
  public ModelBiped getArmorModel(EntityLivingBase entityLiving, ItemStack itemStack, int armorSlot)
  {
    ModelCustomArmor model = ModelCustomArmor.INSTANCE;
    model.modelType = ArmorModel.GASMASK;
    return model;
  }
View Full Code Here

  @Override
  @SideOnly(Side.CLIENT)
  public ModelBiped getArmorModel(EntityLivingBase entityLiving, ItemStack itemStack, int armorSlot)
  {
    ModelCustomArmor model = ModelCustomArmor.INSTANCE;
    model.modelType = ArmorModel.SCUBATANK;
    return model;
  }
View Full Code Here

TOP

Related Classes of mekanism.client.render.ModelCustomArmor$GlowArmor

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.