Chisel

Chisel

150M Downloads

Glass blocks and Bookshelves don't render correctly

Tschipp opened this issue · 3 comments

commented

image

On the left from the glass is a bookshelf block from chisel. The textures don't seem to be rendering correctly.
I'm using forge 2838 and chisel 0.2.1.35.
I'm not using optifine.

commented

Probably some other coremod messing with the render layer logic. Try removing coremods until it works? A mod list would be helpful.

commented

Closing this.

commented

Hey, so I figured out what the cause of this was. Apparently, it was one of my own mods that messed it up 😳
image
As you can see, it completely ruins the uv mapping and texture overlay of lavastone (and others).

My mod wraps every model in the model registry in its own model, that just basically displays a red question mark when the user doesn't have a certain game stage.
I thought I did it properly such that it always takes the values of the parent model, but apparently I messed it up somewhere. Since you know more about how the CTM models work, I'm asking for your assistance in fixing the bug.

This is my model (the rest of the code is also on github):
https://github.com/Tschipp/HardcoreItemStages/blob/master/src/main/java/tschipp/hardcoreitemstages/client/HardcoreItemStageModel.java#L31-L141