//This File was created with the Minecraft-SMP Modelling Toolbox 2.2.2.1
// Copyright (C) 2016 Minecraft-SMP.de
// This file is for Flan's Flying Mod Version 4.0.x+
// Model:
// Model Creator:
// Created on: 10.01.2016 - 16:46:18
// Last changed on: 10.01.2016 - 16:46:18
package com.flansmod.client.model.ww2; //Path where the model is located
import com.flansmod.client.model.ModelCustomArmour;
import com.flansmod.client.tmt.ModelRendererTurbo;
import com.flansmod.client.tmt.Coord2D;
import com.flansmod.client.tmt.Shape2D;
public class ModelAmericanPants extends ModelCustomArmour //Same as Filename
{
int textureX = 256;
int textureY = 256;
public ModelAmericanPants() //Same as Filename
{
leftLegModel = new ModelRendererTurbo[1];
leftLegModel[0] = new ModelRendererTurbo(this, 25, 17, textureX, textureY); // Box 4
leftLegModel[0].addShapeBox(-2F, 0F, -2F, 4, 9, 4, 0F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0F, 0.2F, 0.2F, 0F, 0.2F, 0.2F, 0F, 0.2F, 0.2F, 0F, 0.2F, 0.2F); // Box 4
leftLegModel[0].setRotationPoint(0F, 0F, 0F);
rightLegModel = new ModelRendererTurbo[1];
rightLegModel[0] = new ModelRendererTurbo(this, 1, 17, textureX, textureY); // Box 3
rightLegModel[0].addShapeBox(-2F, 0F, -2F, 4, 9, 4, 0F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0.2F, 0F, 0.2F, 0.2F, 0F, 0.2F, 0.2F, 0F, 0.2F, 0.2F, 0F, 0.2F, 0.2F); // Box 3
rightLegModel[0].setRotationPoint(0F, 0F, 0F);
}
}