Package com.mojang.minecraft.model

Source Code of com.mojang.minecraft.model.SheepModel

package com.mojang.minecraft.model;

import com.mojang.minecraft.model.AnimalModel;
import com.mojang.minecraft.model.ModelPart;

public final class SheepModel extends AnimalModel {

   public SheepModel() {
      super(12, 0.0F);
      this.head = new ModelPart(0, 0);
      this.head.setBounds(-3.0F, -4.0F, -6.0F, 6, 6, 8, 0.0F);
      this.head.setPosition(0.0F, 6.0F, -8.0F);
      this.body = new ModelPart(28, 8);
      this.body.setBounds(-4.0F, -10.0F, -7.0F, 8, 16, 6, 0.0F);
      this.body.setPosition(0.0F, 5.0F, 2.0F);
   }
}
TOP

Related Classes of com.mojang.minecraft.model.SheepModel

TOP
Copyright © 2018 www.massapi.com. 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.