我对 andengine 很陌生,试图从 git url 使用这个 andengine 示例:https
://github.com/nicolasgramlich/AndEngineExamples
但它总是向我显示两个类的错误
BoundCameraExample 和 in HullAlgorithmExample
绑定相机示例错误在第 220 行中说:
类型不匹配:无法从 void 转换为 AnimatedSprite
final AnimatedSprite face = new AnimatedSprite(pX, pY, this.mBoxFaceTextureRegion, this.getVertexBufferObjectManager()).animate(100);
并且在HullAlgorithmExample 错误是在
第 11 行显示 DrawMode 错误的导入语句:import org.andengine.entity.primitive.vbo.DrawMode;
在第 168、175 行中说 DrawMode 无法解析为变量
我对我从同一个 git repo 下载的所有扩展和引擎和扩展使用 java 编译器 1.6。这是怎么回事请帮帮我
感谢所有