0

我想让我的 Scene2D 标签更大。我已经缩放并将宽度和高度设置为 200 或更高,并且它保持相同的大小。

帮助?谢谢。

4

2 回答 2

0

对不起我的英语不好,这是我的代码:

    super(view, batch);

    LabelStyle lbl = new LabelStyle();
    lbl.font = new BitmapFont();
    lbl.fontColor = Color.WHITE;

    score = new Label("Score: ", lbl);
    score.setPosition(getCamera().viewportWidth / 2, getCamera().viewportHeight - 150);
    score.setSize(100, 100);
    score.setSize(200, 200);
    score.setScale(1.5f);
    score.act(Gdx.graphics.getDeltaTime()); // update now 
于 2014-06-02T11:58:22.047 回答
0

所以你想要更大的字体大小?

你可以通过调用来做到这一点lbl.font.setScale(yourFontSize);

于 2014-06-03T10:00:33.677 回答