2017-03-08 79 views

回答

1

Dialog怎樣繪製使用bitmapfont一款具有一個公共方法text,讓你的標籤添加到對話框。使用您的BitmapFont你可以創建一個LabelStyle對象,然後Label並提供它作爲參數

LabelStyle labelStyle = new LabelStyle(); 
labelStyle.font = yourBitmapFont;  

Label label = new Label("Hello world!", labelStyle); 
dialog.text(label); 
// You can also use: dialog.text("Hello world!", labelStyle) 
相關問題