AndEngine 强制关闭加载示例
我刚刚下载了 andengine 项目,其中包含 eclipse 中的扩展示例。大多数示例都可以正常工作。然而,那些涉及物理和游戏(贪吃蛇、赛车、乒乓球)的人会在我的设备上收到强制关闭消息。在错误日志中,我收到 stackOverflow 错误,该错误将我带到这段代码:
public FontManager getFontManager() {
return this.getFontManager();
}
以前有人遇到过这个问题吗?任何帮助表示赞赏。谢谢。
I just downloaded andengine project with examples with extensions in eclipse. Most of the examples work just fine. However, those involving physics and the games(snake,racer,pong) get a force close message on my device. in the error log I get stackOverflow error that takes me to this piece of code:
public FontManager getFontManager() {
return this.getFontManager();
}
Did anyone have this problem before? Any help is appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用以下方法修复即可:
此错误已于 11 月在 AndEngine 项目网站上报告。自九月份以来就没有提交。
Just fix it with:
This bug was reported in november on AndEngine project site. No commits since september there.
将
return this.getFontManager();
更改为return this.mEngine.getFontManager();
Change
return this.getFontManager();
toreturn this.mEngine.getFontManager();