0
我用來居中這兩行文本的代碼不起作用。 Here是它在我的屏幕上看起來像的鏈接,LINK如何使用BitmapFont.TextBounds在屏幕上居中一行文字?
下面是我用來做到這一點的代碼,並且我希望兩個文本在屏幕上水平居中。
BitmapFont.TextBounds titleBounds1 = font.getBounds("Pizza Delivery");
BitmapFont.TextBounds titleBounds2 = font.getBounds("MADNESS");
font.draw(batch,"Pizza Delivery", (Gdx.graphics.getWidth() - titleBounds1.width)/2,500);
font.draw(batch,"MADNESS",(Gdx.graphics.getWidth() - titleBounds2.width)/2, 450);
您可以使用'表格'作爲標籤,並添加文本。 – noone