多人AndEngine错误

时间:2011-02-12 23:41:38

标签: android andengine

我希望之前有人遇到过这个错误,让我知道我需要做什么。

使用multiplayerexample.java时出现一个错误。此错误在addEntity中,显示的错误是方法addEntity(Sprite)未定义类型Layer。

这是以下方法:

  public void addFace(final Scene pScene, final float pX, final float pY) {
        /* Create the face and add it to the scene. */
        final Sprite face = new Sprite(pX, pY, this.mFaceTextureRegion);
        pScene.getTopLayer().addEntity(face);
}

getTopLayer()方法也显示为 - 不推荐使用Scene类型的方法getTopLayer()

对此有任何帮助将不胜感激。感谢

1 个答案:

答案 0 :(得分:0)

在这里找到答案:

http://www.andengine.org/forums/development/gettoplayer-deprecated-t1826.html

需要将其替换为:pScene.attachChild(face);