我正在尝试创建一个简单的游戏。我只需要在我的屏幕上显示文字。我正在使用 AndEngine(最新的)。
这些示例都没有运行,因为它说字体已折旧。
这是示例
private Camera mCamera;
private BitmapTextureAtlas mFontTexture;
private Font mFont;
@Override
public void onLoadResources() {
this.mFontTexture = new BitmapTextureAtlas(256, 256, TextureOptions.BILINEAR_PREMULTIPLYALPHA);
this.mFont = new Font(this.mFontTexture, Typeface.create(Typeface.DEFAULT, Typeface.BOLD), 32, true, Color.BLACK);
this.mEngine.getTextureManager().loadTexture(this.mFontTexture);
this.getFontManager().loadFont(this.mFont);
谁能帮我?