AndEngine将精灵显示为白色矩形?

时间:2012-12-26 14:20:28

标签: android andengine

当我尝试向我的场景添加精灵(在AndEngine中)并在我的手机中运行应用程序时,它只显示一个大矩形。我的代码是:

myTex = new BitmapTextureAtlas(512, 512, TextureOptions.DEFAULT);
myTexRegion = BitmapTextureAtlasTextureRegionFactory.createFromAsset(myTex, this, "menu_spr.jpg", 0, 0);

我的图片尺寸为424 * 424。我尝试使用TextureOptions.DEFAULTTextureOptions.BILINEAR。我的形象被诅咒了吗?感谢。

1 个答案:

答案 0 :(得分:2)

你没有说你正在使用哪个版本的AndEngine,并且你没有显示你的所有代码......你在加载TextureAtlas吗?像

这样的东西
myTexRegion.load();