-1

シンプルなゲームを作ろうとしています。画面にテキストを表示するだけです。私はAndEngine(最新のもの)を使用しています。

Font が減価償却されていると表示されているため、実行されている例はありません。

これが例です

    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 に答える