Indicator for selection
TimGoll opened this issue ยท 0 comments
Indicate in some way that a profession is selected (first time opening)
After klicking on one of the three buttons, you don't know, if you have selected something or not
also it would be cool to render the three items on this screen in the doubled size.
Ton render in double-size you need code like this (in case you don't know):
//draw productionpreview icon
GlStateManager.pushMatrix();
{
GlStateManager.translate(guiLeft + 18, guiTop + 20, 0);
GlStateManager.scale(2, 2, 2);
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
RenderHelper.enableGUIStandardItemLighting();
mc.getRenderItem().renderItemIntoGUI(RecipeHandlerFacadingBench.outputStack.get(outputBlocks_index), 0, 0);
}
GlStateManager.popMatrix();