It's not supposed to have that much on the screen at the same moment as they will need to have other blocks surrounding them, but yes, once I released it I'll see the feedback
http://pastebin.com/kbebrB1K Ymov, Head1, Head2 and Head3 should NOT be colored, and I know it can be a bit of an overkill but it's the only way I can think this can be done as we don't have RenderLayers as with Entities
Yeah, you use GL11.glColor3f(r, g, b) to change color and GLStateManager.resetColor() to change it back for the next rendering, but this change the color of all the model, so what I did to fix it is render the model two times, each with the textures that need to be colored or not like this: http://pastebin.com/Qy8SJVd4
Hi everyone, I'm trying to figure out how to add color to some of the boxes of custom Model for a TileEntity, I can do GL11.glColor3f() on the renderTileEntityAt() method but that as you suppose tints all the model, I though of spliting the model on colorable/not coloreable models but some of the boxes are childs of anothers and It's going to be a mess, so, is there a way to tint some parts of the texture or to tint some parts of the model??
I could answer the third, simply take the position of the marker with lower x and z coords, do a for loop until you arrive to the coords of the marker with the highest coords (If that's the question)
Got NBT setted up but they don't seem to work, this is my code for the TileEntity:
http://pastebin.com/CLGnjvwV
And the log when I load a world (System prints around lines 7-9 and 77-86):
http://pastebin.com/ueuFZpFy
So I want to save the data for a TileEntity, just a couple integers and a boolean, first time trying with goals of success to save the data with NBT, but, should I use them? Or the new Capabilities system is the way to go for storing TileEntities data?
You can probably take a look at the Twilight Forest source mod if you didn't https://github.com/Benimatic/twilightforest , maybe you will find the way Benimatic does it
Ok, but to do the animation I have to look to the value of a variable of the TileEntity, value that is not updated when I call it on my TileEntitySpecialRenderer (I hope I explain myself, I'm not a native english speaker and is late in night where I live )