-1

我正在尝试创建一个简单的游戏。我只需要在我的屏幕上显示文字。我正在使用 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);

谁能帮我?

4

1 回答 1

1

确保您正在为字体导入正确的文件 - 它应该是

import org.andengine.opengl.font.Font;
于 2012-11-01T15:40:55.727 回答