API Documentation
Font Renderer
API Documentation
Font Renderer
List of available render functions
OpalSDK.getFontRenderer()
DrawString
void drawString(final DrawContext context, String text, final float x,final float y, final float size, final int color);
void drawString(final DrawContext context, final String text, final float x,final float y, final float size, final int color, final boolean shadow);
void drawString(final FontWeight weight, final DrawContext context, final String text,final float x, final float y, final float size, final int color, final boolean shadow);
OpalSDK.getFontRenderer().drawString(event.getDrawContext(), "Hello World", 10, 10, 1, 0xFFFFFFFF);
weight
Optional
shadow
Optional
getStringWidth
float getStringWidth(final String text, final float size);
float getStringWidth(final FontWeight weight, final String text, final float size);
OpalSDK.getFontRenderer().getStringWidth("Hello World", 1);
weight
Optional
getStringHeight
float getStringHeight(final String text, final float size);
float getStringHeight(final FontWeight weight, final String text, final float size);
OpalSDK.getFontRenderer().getStringHeight("Hello World", 1);
weight
Optional
On this page