basic implementation done

This commit is contained in:
StevenRS11
2013-05-27 18:58:20 -04:00
parent 1480b51a3e
commit 8d19b2afab
43 changed files with 152 additions and 33 deletions

View File

@@ -38,8 +38,7 @@ public class ClientProxy extends CommonProxy
MinecraftForgeClient.preloadTexture(WARP_PNG);
MinecraftForgeClient.preloadTexture(RIFT_PNG);

View File

@@ -27,13 +27,14 @@ public class ModelMobObelisk extends ModelBase
textureWidth = 256;
textureHeight = 256;
wholemonolith = new ModelRenderer(this, 0, 0);
wholemonolith.addBox(-32F, -72F, -8F, 32, 72, 8);
wholemonolith.addBox(-48/2F,-108F/1.3F, -12/2F, 48, 108, 12);
wholemonolith.setTextureSize(256, 256);
wholemonolith.mirror = true;
this.wholemonolith.rotationPointY=16;
this.wholemonolith.rotationPointX=16;
this.wholemonolith.rotationPointZ=4;
this.wholemonolith.rotationPointY=0;
this.wholemonolith.rotationPointX=0;
this.wholemonolith.rotationPointZ=0;
}