我正在尝试创建一个简单的游戏。我只需要在屏幕上显示文字。我正在使用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);
任何人都可以帮助我吗?
答案 0 :(得分:1)
确保您输入正确的字体文件 - 它应该是
import org.andengine.opengl.font.Font;