Skip to content

Commit

Permalink
Comment out WIP trophy code
Browse files Browse the repository at this point in the history
  • Loading branch information
IcarussOne committed Oct 5, 2024
1 parent 586ad18 commit 77b2902
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public static class DummyTile extends TileEntityTFTrophy {
private static final ResourceLocation textureLocQuestRam = TwilightForestMod.getModelTexture("questram.png");
private static final ResourceLocation textureLocQuestRamLines = TwilightForestMod.getModelTexture("questram_lines.png");

private final ModelTFYetiAlpha eliteYetiModel = new ModelTFYetiAlpha();
private static final ResourceLocation textureLocEliteYeti = TwilightForestMod.getModelTexture("yetialpha.png");
//private final ModelTFYetiAlpha eliteYetiModel = new ModelTFYetiAlpha();
//private static final ResourceLocation textureLocEliteYeti = TwilightForestMod.getModelTexture("yetialpha.png");

/*private final ModelTFKobold finalKoboldModel = new ModelTFKobold();
private static final ResourceLocation textureLocFinalKobold = TwilightForestMod.getModelTexture("kobold.png");*/
Expand Down Expand Up @@ -208,9 +208,9 @@ public void render(@Nullable TileEntityTFTrophy trophy, double x, double y, doub
case FINAL_BOSS:
renderWroughtnautHead(rotation, onGround);
break;
case ELITE_YETI:
/*case ELITE_YETI:
renderEliteYetiHead(rotation, onGround);
break;
break;*/
default:
break;
}
Expand Down Expand Up @@ -463,7 +463,7 @@ private void renderWroughtnautHead(float rotation, boolean onGround) {
new ModelWroughtnaut().head.render(0.0625F);
}

private void renderEliteYetiHead(float rotation, boolean onGround) {
/*private void renderEliteYetiHead(float rotation, boolean onGround) {
GlStateManager.translate(0, 1, 0);
this.bindTexture(textureLocEliteYeti);
Expand All @@ -478,5 +478,5 @@ private void renderEliteYetiHead(float rotation, boolean onGround) {
// render the head
eliteYetiModel.bipedHead.render(0.0625F);
}
}*/
}

0 comments on commit 77b2902

Please sign in to comment.