Странно, но после установки примеров -
AndEngineExamples GLES2 в нем уже будут ошибки и примеры у вас запускаться не будут, в этой статье мы все эти ошибки в примерах исправим, строки с ошибкой будут закомментированы, а ниже исправленные строки без ошибок:
Файл:
BoundCameraExample.java//final AnimatedSprite face = new AnimatedSprite(pX, pY, this.mBoxFaceTextureRegion, this.getVertexBufferObjectManager()).animate(100);
final AnimatedSprite face = new AnimatedSprite(pX, pY, this.mBoxFaceTextureRegion, this.getVertexBufferObjectManager());
face.animate(100);
Файл:
HullAlgorithmExample.java//import org.andengine.entity.primitive.vbo.DrawMode;
import org.andengine.entity.primitive.DrawMode;
Файл:
SplitScreenExample.java//final AnimatedSprite face = new AnimatedSprite(pX, pY, this.mBoxFaceTextureRegion, this.getVertexBufferObjectManager()).animate(100);
final AnimatedSprite face = new AnimatedSprite(pX, pY, this.mBoxFaceTextureRegion, this.getVertexBufferObjectManager());
face.animate(100);
Файл:
TextBreakExample.java//this.mText = new Text(50, 40, this.mFont, "", 1000, new TextOptions(AutoWrap.LETTERS, AUTOWRAP_WIDTH, Text.LEADING_DEFAULT, HorizontalAlign.CENTER), vertexBufferObjectManager);
this.mText = new Text(50, 40, this.mFont, "", 1000, new TextOptions(AutoWrap.LETTERS, AUTOWRAP_WIDTH, HorizontalAlign.CENTER, Text.LEADING_DEFAULT), vertexBufferObjectManager);
Устанавливаем библиотеки которые используются в примерах:
https://github.com/nicolasgramlich/AndEngineMODPlayerExtension.git
https://github.com/nicolasgramlich/AndEnginePhysicsBox2DExtension.git
https://github.com/nicolasgramlich/AndEngineMultiplayerExtension.git
https://github.com/nicolasgramlich/AndEngineSVGTextureRegionExtension.git
https://github.com/nicolasgramlich/AndEngineTexturePackerExtension.git
https://github.com/nicolasgramlich/AndEngineTMXTiledMapExtension.git
Готово, запускаем примеры!