public class BitmapFontBuilder
extends java.lang.Object
tipBodyFont
from the base game, and you can alter individual pieces of it without needing to worry about changing the entire thing. Fonts should be built in a post-initialize hook from BaseMod and then stored statically somewhere for access. Easel comes built with a few custom fonts already, e.g. EaselFonts.SMALLER_TIP_BODY
, whose constructions use this builder if you're looking for examples of use.Constructor and Description |
---|
BitmapFontBuilder() |
Modifier and Type | Method and Description |
---|---|
com.badlogic.gdx.graphics.g2d.BitmapFont |
build()
Constructs the final bitmap font after setting all the parameters with the builder methods.
|
BitmapFontBuilder |
withBorder(com.badlogic.gdx.graphics.Color borderColor,
float borderWidth) |
BitmapFontBuilder |
withBorder(com.badlogic.gdx.graphics.Color borderColor,
float borderWidth,
float borderGamma) |
BitmapFontBuilder |
withItalic() |
BitmapFontBuilder |
withKreonBold() |
BitmapFontBuilder |
withKreonRegular() |
BitmapFontBuilder |
withLinearFiltering(boolean linearFiltering)
Use for large font sizes.
|
BitmapFontBuilder |
withShadow(com.badlogic.gdx.graphics.Color shadowColor) |
BitmapFontBuilder |
withShadow(com.badlogic.gdx.graphics.Color shadowColor,
int unscaledOffsetX,
int unscaledOffsetY) |
BitmapFontBuilder |
withSize(float fontSize) |
BitmapFontBuilder |
withSize(float fontSize,
boolean linearFiltering) |
public BitmapFontBuilder withSize(float fontSize)
public BitmapFontBuilder withSize(float fontSize, boolean linearFiltering)
public BitmapFontBuilder withKreonRegular()
public BitmapFontBuilder withKreonBold()
public BitmapFontBuilder withItalic()
public BitmapFontBuilder withLinearFiltering(boolean linearFiltering)
linearFiltering
- whether to use linear filteringpublic BitmapFontBuilder withShadow(com.badlogic.gdx.graphics.Color shadowColor)
public BitmapFontBuilder withShadow(com.badlogic.gdx.graphics.Color shadowColor, int unscaledOffsetX, int unscaledOffsetY)
public BitmapFontBuilder withBorder(com.badlogic.gdx.graphics.Color borderColor, float borderWidth)
public BitmapFontBuilder withBorder(com.badlogic.gdx.graphics.Color borderColor, float borderWidth, float borderGamma)
public com.badlogic.gdx.graphics.g2d.BitmapFont build()