消失的ChangeableText

时间:2011-11-26 13:53:01

标签: android andengine

我有问题。当我创建一个可更改的文本,然后一些字母消失。我尝试使用服务器字体而且没有改变!

一段代码:

FONT:

FontFactory.setAssetBasePath("font/");
this.mFontTexture = new BitmapTextureAtlas(256, 256, TextureOptions.BILINEAR_PREMULTIPLYALPHA);

可变文本:

ChangeableText ty = new ChangeableText(20, CAMERA_HEIGHT / 2 - 80, mFont, "Game over!");
this.mScene.attachChild(ty);

1 个答案:

答案 0 :(得分:2)

BitmapTextureAtlas太小时我就知道了。尝试将其放大(可能是512x512),这也取决于字体大小。