我需要使用glyphlayout
以便可以使文本居中,但我发现如果我这样做,文本会由于间距不正确而失真。
public SimpleButton(String text, float x, float y, float w, float h, BitmapFont font) {
pos = new Vector2(x, y);
this.w = w;
this.h = h;
this.text = text;
this.font = font;
glyphLayout.setText(font, text);
hitbox = new Rectangle(x, y - h, w, h);
}
public void render(SpriteBatch batch) {
font.draw(batch, text, pos.x, pos.y);
}
像这样它显示得很好:
但是glyphlayout
由于某种原因使用它来绘制间距是不同的:
public void render(SpriteBatch batch) {
font.draw(batch, glyphLayout, pos.x, pos.y);
}
Glyphlayout 似乎在这里改变了间距,但我看不到任何用于设置间距的选项。