シンプルなゲームを作ろうとしています。画面にテキストを表示するだけです。私は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);
誰でも私を助けることができますか?