AndEngine 强制关闭加载示例

发布于 2024-12-24 17:33:44 字数 276 浏览 2 评论 0原文

我刚刚下载了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

同尘 2024-12-31 17:33:44

只需使用以下方法修复即可:

public FontManager getFontManager() {
    return this.mEngine.getFontManager();
}

此错误已于 11 月在 AndEngine 项目网站上报告。自九月份以来就没有提交。

Just fix it with:

public FontManager getFontManager() {
    return this.mEngine.getFontManager();
}

This bug was reported in november on AndEngine project site. No commits since september there.

与君绝 2024-12-31 17:33:44

return this.getFontManager(); 更改为 return this.mEngine.getFontManager();

Change return this.getFontManager(); to return this.mEngine.getFontManager();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文