Create

Create

86M Downloads

Fabulous rendering issues

igbrade opened this issue · 3 comments

commented

Forge version: 35.1.13
Create version: 0.3a

When using fabulous graphics speed indicator doesn't show up, also happens with other blocks, like the linear chassis and the creative motor.
image

Using fancy graphics:
image

commented

This issue has been marked as stale because it has been inactive for 3 weeks. It will be closed if it remains inactive for another 3 weeks.

commented

This issue has been closed since it has been inactive for 3 weeks since it was marked as stale.

commented

I’m not at all sure where create gets the render types for its overlays like these so I can’t exactly make a pr to fix this, but if it’s any help for the create devs, here’s how I solved these issues in my mod:

   	if (input.equals(RenderType.getTranslucent()))
   		return (Minecraft.getInstance().gameSettings.graphicFanciness.equals(GraphicsFanciness.FABULOUS)) ?
   				RenderType.getTranslucentMovingBlock() :
   				RenderType.getTranslucentNoCrumbling();
   	return input;```